Skip to content

Commit 1c35819

Browse files
committed
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 <[email protected]> Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent a06a922 commit 1c35819

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

godoc/short/short.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@ func RegisterHandlers(mux *http.ServeMux, dc *datastore.Client, mc *memcache.Cli
5252
// TODO(cbro): move storage of the links to a text file in Gerrit.
5353
// Disable the admin handler until that happens, since GAE Flex doesn't support
5454
// the "google.golang.org/appengine/user" package.
55-
// See golang.org/issue/27205#issuecomment-418673218
55+
// See golang.org/issue/29988 and golang.org/issue/27205#issuecomment-418673218.
5656
// mux.HandleFunc(prefix, adminHandler)
5757
mux.HandleFunc(prefix, func(w http.ResponseWriter, r *http.Request) {
5858
w.WriteHeader(http.StatusForbidden)
59-
io.WriteString(w, "Link creation temporarily unavailable. See golang.org/issue/27205.")
59+
io.WriteString(w, "Link creation temporarily unavailable. See golang.org/issue/29988.")
6060
})
6161
}
6262

0 commit comments

Comments
 (0)