File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ class UnleashClient:
9090 :param url: URL of the unleash server, required.
9191 :param app_name: Name of the application using the unleash client, required.
9292 :param environment: Name of the environment using the unleash client, optional & defaults to "default".
93- :param instance_id: Unique identifier for unleash client instance, optional & defaults to "unleash-client- python"
93+ :param instance_id: Unique identifier for unleash client instance, optional & defaults to "unleash-python-sdk "
9494 :param refresh_interval: Provisioning refresh interval in seconds, optional & defaults to 15 seconds
9595 :params request_timeout: Timeout for requests to unleash server in seconds, optional & defaults to 30 seconds
9696 :params request_retries: Number of retries for requests to unleash server, optional & defaults to 3
@@ -116,7 +116,7 @@ def __init__(
116116 url : str ,
117117 app_name : str ,
118118 environment : str = "default" ,
119- instance_id : str = "unleash-client- python" ,
119+ instance_id : str = "unleash-python-sdk " ,
120120 refresh_interval : int = 15 ,
121121 refresh_jitter : Optional [int ] = None ,
122122 metrics_interval : int = 60 ,
Original file line number Diff line number Diff line change 11from importlib_metadata import version
22
33# Library
4- SDK_NAME = "unleash-client- python"
4+ SDK_NAME = "unleash-python-sdk "
55SDK_VERSION = version ("UnleashClient" )
66REQUEST_TIMEOUT = 30
77REQUEST_RETRIES = 3
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Development
44
55Contributions welcome!
66
7- Here are some notes about common tools and tasks you'll run into when working on `unleash-client- python `.
7+ Here are some notes about common tools and tasks you'll run into when working on `unleash-python-sdk `.
88
99Tooling
1010#######################################
You can’t perform that action at this time.
0 commit comments