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

Unified Diff: impl/memory/info.go

Issue 1929423002: filter/txnBuf: Use fully-qualified App ID. (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/gae@master
Patch Set: Use public methods for defining Info service in tests. Created 4 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
« no previous file with comments | « impl/memory/datastore_test.go ('k') | impl/memory/info_test.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: impl/memory/info.go
diff --git a/impl/memory/info.go b/impl/memory/info.go
index c19044b45c4b7ed9b40370464580101c71d1a2c2..057ff93d6a42db30a68737d2f1707e7fd02bd3cc 100644
--- a/impl/memory/info.go
+++ b/impl/memory/info.go
@@ -28,7 +28,8 @@ var defaultGlobalInfoData = globalInfoData{
}
type globalInfoData struct {
- appid string
+ appID string
+ fqAppID string
namespace *string
versionID string
requestID string
@@ -98,11 +99,11 @@ func (gi *giImpl) MustNamespace(ns string) context.Context {
}
func (gi *giImpl) AppID() string {
- return gi.appid
+ return gi.appID
}
func (gi *giImpl) FullyQualifiedAppID() string {
- return gi.appid
+ return gi.fqAppID
}
func (gi *giImpl) IsDevAppServer() bool {
« no previous file with comments | « impl/memory/datastore_test.go ('k') | impl/memory/info_test.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698