I have a program that has two API keys that use to create two separate Rally objects.
rally1 = Rally(server=server, apikey=apikey1, workspace=workspace, project=project, headers={'version': 'v2.0'})
rally2 = Rally(server=server, apikey=apikey2, workspace=workspace, project=project, headers={'version': 'v2.0'})
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.
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
Rallyhas some global data that is overwritten by creating a second rally object with a different apikey.