You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
self._user_id is never defined to a value when initiating Client. create_access_code will fail unless you manually define it. Current workaround is define client.locks._user_id = "your_user_guid"
The text was updated successfully, but these errors were encountered:
Yes, thank you for pointing this out. This changed when the authentication schema changed from the user/pass to the API token. The user id simply isn't returning from the service during this new flow.
self._user_id
is never defined to a value when initiatingClient
.create_access_code
will fail unless you manually define it. Current workaround is define client.locks._user_id = "your_user_guid"The text was updated successfully, but these errors were encountered: