Skip to content
This repository was archived by the owner on Mar 13, 2022. It is now read-only.

Allow setting maxsize for PoolManager #18

Merged
merged 2 commits into from
Jul 9, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,7 @@

class ConfigurationObject(object):
"""
NOTE: This class is auto generated by the swagger code generator program.
Ref: https://github.com/swagger-api/swagger-codegen
Do not edit the class manually.
Configuration options for RESTClientObject
"""

def __init__(self):
Expand Down Expand Up @@ -85,6 +83,13 @@ def __init__(self):
# Set this to True/False to enable/disable SSL hostname verification.
self.assert_hostname = None

# urllib3 connection pool's maximum number of connections saved
# per pool. Increasing this is useful for cases when you are
# making a lot of possibly parallel requests to the same host,
# which is often the case here.
# When set to `None`, will default to whatever urllib3 uses
self.connection_pool_maxsize = None

@property
def logger_file(self):
"""
Expand Down
3 changes: 3 additions & 0 deletions rest.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ def __init__(self, pools_size=4, config=configuration):
'key_file': key_file,
}

if config.connection_pool_maxsize is not None:
kwargs['maxsize'] = config.connection_pool_maxsize

if config.assert_hostname is not None:
kwargs['assert_hostname'] = config.assert_hostname

Expand Down