-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Will pyral support using multiple users? #185
Comments
I got the following error while creating have multiple connections with different api key 2022-02-09 21:35:18.075 401 b'\n\n<meta http-equiv="Content-Type" content="t' ... |
I have found the bug that causes this. In restapi.py, the header is directly assigned by REST_REST_HEADERS. For Python, this REST header is then shared by multiple users, and later users will overwrite others' API key in the header. The simple fix will be
|
… copying the RALLY_REST_HEADERS
I have a program that has two API keys that use to create two separate Rally objects.
It seems that rally1 is not valid and only rally2 is valid. Is it possible that
Rally
has some global data that is overwritten by creating a second rally object with a different apikey.The text was updated successfully, but these errors were encountered: