-
Notifications
You must be signed in to change notification settings - Fork 110
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
Update to accommodate support for oauth2client>4.0.0 #162
Comments
Any update on this.? |
from oauth2client import locked_file we have upgraded oauth2client an year ago, this library is still using an year old version of that package. This dependencies are holding us back for migrating to endpoints v2, for which the V1 is already deprecated. It would be great if dependencies from Google managed libraries are compatible with other Google libraries. |
This changes has been needed for a while now. The main blocker seems to be the use of locked_file for caching GCE credentials. I've added a simple multiprocess lockable file cache that uses a similar approach to that used in ouath2client's multiprocess file storage. Submission of this should close issue #162.
* Update client to accommodate oauth2client>=4.0 This changes has been needed for a while now. The main blocker seems to be the use of locked_file for caching GCE credentials. I've added a simple multiprocess lockable file cache that uses a similar approach to that used in ouath2client's multiprocess file storage. Submission of this should close issue #162. * Update test runner setup
It actually also impacts endpoints and apitools for another reason:
Could only find this solution (which is to downgrade): https://stackoverflow.com/a/44266031 |
cloudendpoints/endpoints-management-python#21
The text was updated successfully, but these errors were encountered: