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
{{ message }}
This repository has been archived by the owner on Jul 22, 2019. It is now read-only.
Edit: For the latest CouchDB v2.3.0
In client.py line 284, in the login method, the cookie was set to if sys.version_info[0] > 2: cookie = headers._headers[0][1] else: cookie = headers.headers[0].split(';')[0]
_headers[0][1] which is not the auth token, but some string as "must-revalidate". the actual token is at _headers[5][1]. So by change that, you will be able to get a correct return from this login method.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Edit: For the latest CouchDB v2.3.0
In client.py line 284, in the login method, the cookie was set to
if sys.version_info[0] > 2: cookie = headers._headers[0][1] else: cookie = headers.headers[0].split(';')[0]
_headers[0][1] which is not the auth token, but some string as "must-revalidate". the actual token is at _headers[5][1]. So by change that, you will be able to get a correct return from this login method.
The text was updated successfully, but these errors were encountered: