diff options
author | Joffrey F <joffrey@docker.com> | 2016-09-12 17:43:50 -0700 |
---|---|---|
committer | Joffrey F <joffrey@docker.com> | 2016-09-16 11:55:08 -0700 |
commit | 64fba723ddd1f186548a3a7f49ca952265ac1121 (patch) | |
tree | d5b0d43f1c83d38b2c0d41cb955a77eeb94a4b62 /docker/constants.py | |
parent | 06b6a62faab560ce7f07084d63294261db8bbca8 (diff) | |
download | docker-py-1.10.3-release.tar.gz |
Number of pools in adapter is configurable1.10.3-release
Default increased from 10 to 25
Signed-off-by: Joffrey F <joffrey@docker.com>
Diffstat (limited to 'docker/constants.py')
-rw-r--r-- | docker/constants.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/docker/constants.py b/docker/constants.py index cf5a39a..0c9a020 100644 --- a/docker/constants.py +++ b/docker/constants.py @@ -15,3 +15,4 @@ INSECURE_REGISTRY_DEPRECATION_WARNING = \ IS_WINDOWS_PLATFORM = (sys.platform == 'win32') DEFAULT_USER_AGENT = "docker-py/{0}".format(version) +DEFAULT_NUM_POOLS = 25 |