Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(359)

Unified Diff: appengine/isolate/handlers_endpoints_v1.py

Issue 2854853005: auth: Stop mentioning 'global' secrets in API. (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: appengine/isolate/handlers_endpoints_v1.py
diff --git a/appengine/isolate/handlers_endpoints_v1.py b/appengine/isolate/handlers_endpoints_v1.py
index ee43132de3175a6233ddc07f253fff319cad0233..085dcf7396116e13153bd73c48971579260162ce 100644
--- a/appengine/isolate/handlers_endpoints_v1.py
+++ b/appengine/isolate/handlers_endpoints_v1.py
@@ -126,7 +126,7 @@ UPLOAD_MESSAGES = ['datastore', 'gs']
class TokenSigner(auth.TokenKind):
"""Used to create upload tickets."""
expiration_sec = DEFAULT_LINK_EXPIRATION.total_seconds()
- secret_key = auth.SecretKey('isolate_upload_token', scope='local')
+ secret_key = auth.SecretKey('isolate_upload_token')
@ndb.transactional

Powered by Google App Engine
This is Rietveld 408576698