From 1f1b3322f67af76803c942fd237291538ec68262 Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Wed, 27 Apr 2016 15:24:22 +1000 Subject: [PATCH] playground: hit golang.org/compile endpoint instead of play.golang.org Not sure why this was originally going via the playground. It needn't. Change-Id: I40b5886a56ba4b941ff74f4bc325625412d7eaff Reviewed-on: https://go-review.googlesource.com/22497 Reviewed-by: Andrew Gerrand --- playground/common.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playground/common.go b/playground/common.go index d8c28052d7..2d11d5d4fd 100644 --- a/playground/common.go +++ b/playground/common.go @@ -15,7 +15,7 @@ import ( "net/http" ) -const baseURL = "http://play.golang.org" +const baseURL = "https://golang.org/compile?output=json" func init() { http.HandleFunc("/compile", bounce)