-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Corrected Google Cloud VM error: (#125)
On Google Cloud VMs, the user's account email is stored in a different attribute of the Session's Credentials object (service_account_email rather than id_token). The existence of the attributes are also mutually exclusive. This caused an AttributeError when accessing a non-existent attribute, and failure to populate __USER_ID, which broke several functions. Updated api.py to handle the different attribute locations.
- Loading branch information
Showing
3 changed files
with
7 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# Package version | ||
__version__ = "0.16.23" | ||
__version__ = "0.16.24" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters