-
Notifications
You must be signed in to change notification settings - Fork 93
Description
Describe the bug
I am encountering an issue where HTTPAdapter.pool_maxsize
seems to be limited to 10
even when using the newest version of ReportPortal
. The expected behaviour is for HTTPAdapter.pool_maxsize
to be set to the default value 50
, as specified in ReportPortalClient construction.
client-Python/reportportal_client/service.py
Line 186 in 8041c64
max_pool_size=50, |
Steps to Reproduce
When starting any test cases with ReportPortalClient v5.2.5
, I noticed that the HTTPAdapter.pool_maxsize
did not change.
Expected behavior
The HTTPAdapter.pool_maxsize
should be 50
, which is the default value for ReportPortalClient construction.
Actual behavior
Looking through the code, I discovered that HTTPAdapter.pool_maxsize
seems to be capped at 10
. Here's where it occurs:
client-Python/reportportal_client/service.py
Line 217 in 8041c64
if retries: |
I want to clarify if there are any concerns about this usage. Is it possible to increase the size of max_pool_size
without setting retries
?
Thank you, and I look forward to your reply.
Package versions
reportportal-client: 5.2.5