Skip to content

Commit dc141f0

Browse files
chore: change registration name to unleash-python-sdk (#364)
1 parent 9fc3b35 commit dc141f0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

UnleashClient/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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,

UnleashClient/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from importlib_metadata import version
22

33
# Library
4-
SDK_NAME = "unleash-client-python"
4+
SDK_NAME = "unleash-python-sdk"
55
SDK_VERSION = version("UnleashClient")
66
REQUEST_TIMEOUT = 30
77
REQUEST_RETRIES = 3

docs/development.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Development
44

55
Contributions 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

99
Tooling
1010
#######################################

0 commit comments

Comments
 (0)