Skip to content

Commit

Permalink
Merge pull request #33 from configcat/useragent-fix
Browse files Browse the repository at this point in the history
useragent-fix
  • Loading branch information
kp-cat authored Jun 27, 2022
2 parents 19b701a + 2669c08 commit cd03631
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion configcatclient/configcatclient.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def __init__(self,
self._cache_policy = None
else:
if poll_interval_seconds > 0:
self._config_fetcher = ConfigFetcher(sdk_key, 'p', base_url, proxies, proxy_auth, connect_timeout, read_timeout, data_governance)
self._config_fetcher = ConfigFetcher(sdk_key, 'a', base_url, proxies, proxy_auth, connect_timeout, read_timeout, data_governance)
self._cache_policy = AutoPollingCachePolicy(self._config_fetcher, self._config_cache,
self.__get_cache_key(),
poll_interval_seconds, max_init_wait_time_seconds,
Expand Down
2 changes: 1 addition & 1 deletion configcatclient/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
CONFIGCATCLIENT_VERSION = "6.0.2"
CONFIGCATCLIENT_VERSION = "6.0.3"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ def parse_requirements(filename):
return [line for line in lines if line]


configcatclient_version = '6.0.2'
configcatclient_version = '6.0.3'

requirements = parse_requirements('requirements.txt')

Expand Down

0 comments on commit cd03631

Please sign in to comment.