From 29f11e2b93f4d66f7c335bd7b2892836d4944f5c Mon Sep 17 00:00:00 2001 From: Andrew Bonventre Date: Tue, 9 Oct 2018 17:22:08 -0400 Subject: [PATCH] playground: use play.golang.org instead of golang.org Calling golang.org/{compile|share} just forwards it to play.golang.org/{compile|share}. Avoid the extra jump for the request. Change-Id: I95e8e79fe4623346663d0c11204f196c75716177 Reviewed-on: https://go-review.googlesource.com/c/140839 Reviewed-by: Dmitri Shuralyov --- playground/common.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playground/common.go b/playground/common.go index f34a4b77..564aff17 100644 --- a/playground/common.go +++ b/playground/common.go @@ -17,7 +17,7 @@ import ( "time" ) -const baseURL = "https://golang.org" +const baseURL = "https://play.golang.org" func init() { http.HandleFunc("/compile", bounce)