You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would be nice to be able to configure the underlying size of the connection pool.
DeepL is using requests as:
self._session=requests.Session()
which uses the default HTTPAdater, so 10 connections for http:// & https://.
When we have a peak, underlying client logs things like Connection pool is full, discarding connection which is not an error as is, but would be better if we could adapt the pool according to our traffic.
The text was updated successfully, but these errors were encountered:
Hello,
Would be nice to be able to configure the underlying size of the connection pool.
DeepL is using requests as:
which uses the default HTTPAdater, so 10 connections for
http://
&https://
.When we have a peak, underlying client logs things like
Connection pool is full, discarding connection
which is not an error as is, but would be better if we could adapt the pool according to our traffic.The text was updated successfully, but these errors were encountered: