Improve documentation of idle pool size

This commit is contained in:
syeopite 2024-11-12 09:19:43 -08:00
parent 39afb3379a
commit 540dfe2927
No known key found for this signature in database
GPG Key ID: A73C186DA3955A1A

View File

@ -158,6 +158,13 @@ https_only: false
## Max idle size of the HTTP pool used to connect to youtube. Each ## Max idle size of the HTTP pool used to connect to youtube. Each
## domain ('youtube.com', 'ytimg.com', ...) has its own pool. ## domain ('youtube.com', 'ytimg.com', ...) has its own pool.
## ##
## This means that when releasing a connection back into the pool, it will
## be closed if there are already more than idle_pool_size connections within
## the pool
##
## Do note that idle connections are kept around forever without any way of
## timing them out.
##
## When unset this value has the same value as pool_size ## When unset this value has the same value as pool_size
## ##
## Accepted values: a positive integer ## Accepted values: a positive integer