From 0114a6029e2e31c9a327fad16ef633c4f1dfbcc2 Mon Sep 17 00:00:00 2001 From: Dmitri Shuralyov Date: Wed, 30 Jan 2019 01:36:27 -0500 Subject: [PATCH] [release-branch.go1.11] godoc/short: point to new tracking issue for shortlink creation There's a new dedicated issue tracking this task, point to it instead of the previous large issue which has been closed by now. Updates golang/go#29988 Updates golang/go#27205 Change-Id: Ib1443d14a6369322b36cdf8305344a35c421a2e5 Reviewed-on: https://go-review.googlesource.com/c/160377 Reviewed-by: Agniva De Sarker Reviewed-by: Brad Fitzpatrick (cherry picked from commit 1c3581914d338ed45d4c3b4b5029c7c7d112faca) Reviewed-on: https://go-review.googlesource.com/c/160477 Reviewed-by: Andrew Bonventre Run-TryBot: Andrew Bonventre --- godoc/short/short.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/godoc/short/short.go b/godoc/short/short.go index 5f91cb22..4b5f3e28 100644 --- a/godoc/short/short.go +++ b/godoc/short/short.go @@ -52,11 +52,11 @@ func RegisterHandlers(mux *http.ServeMux, dc *datastore.Client, mc *memcache.Cli // TODO(cbro): move storage of the links to a text file in Gerrit. // Disable the admin handler until that happens, since GAE Flex doesn't support // the "google.golang.org/appengine/user" package. - // See golang.org/issue/27205#issuecomment-418673218 + // See golang.org/issue/29988 and golang.org/issue/27205#issuecomment-418673218. // mux.HandleFunc(prefix, adminHandler) mux.HandleFunc(prefix, func(w http.ResponseWriter, r *http.Request) { w.WriteHeader(http.StatusForbidden) - io.WriteString(w, "Link creation temporarily unavailable. See golang.org/issue/27205.") + io.WriteString(w, "Link creation temporarily unavailable. See golang.org/issue/29988.") }) }