We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c4b92d commit b72c9a8Copy full SHA for b72c9a8
UnleashClient/api/register.py
@@ -71,7 +71,7 @@ def register_client(
71
**custom_options,
72
)
73
74
- if resp.status_code != 202:
+ if resp.status_code not in {200, 202}:
75
log_resp_info(resp)
76
LOGGER.warning(
77
"Unleash Client registration failed due to unexpected HTTP status code: %s",
0 commit comments