aboutsummaryrefslogtreecommitdiffstats
path: root/dashboard/app/cache.go
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2022-01-05 15:28:35 +0100
committerGitHub <noreply@github.com>2022-01-05 15:28:35 +0100
commit6acc789ad3f6c04319764f414ebb1a08e6145332 (patch)
tree5b8ff23e8ce28c7a6ae399a02c9b540a0cd9cd8c /dashboard/app/cache.go
parent0a2584dd6205f108e11a521809ce61263f98f15c (diff)
dashboard/app: update to go116 (#2959)
1. Updated the "include"s. 2. No logs read API in the AppEngine anymore. Replaced by the GCP logging API. 3. Use "GO111MODULE=off gcloud beta app deploy ./dashboard/app/app.yaml --no-promote" to test new deployment. 4. Updated the documentation.
Diffstat (limited to 'dashboard/app/cache.go')
-rw-r--r--dashboard/app/cache.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/dashboard/app/cache.go b/dashboard/app/cache.go
index 7040f65e8..2b4178abc 100644
--- a/dashboard/app/cache.go
+++ b/dashboard/app/cache.go
@@ -9,9 +9,9 @@ import (
"time"
"golang.org/x/net/context"
- "google.golang.org/appengine"
- "google.golang.org/appengine/log"
- "google.golang.org/appengine/memcache"
+ "google.golang.org/appengine/v2"
+ "google.golang.org/appengine/v2/log"
+ "google.golang.org/appengine/v2/memcache"
)
type Cached struct {