From 231c3d740519a02c7cdae779bb258b975392038d Mon Sep 17 00:00:00 2001 From: mpl Date: Thu, 25 Oct 2012 18:39:44 +0200 Subject: [PATCH] wizard: bugfix, TLS is now https this should have been done along with the other changes in 94cb8cf05a56aa1c251839414ed5bb67bffded66 Change-Id: I376e6616c3aeaa9d5accb65b64a43d101de25d3b --- pkg/server/wizard.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/server/wizard.go b/pkg/server/wizard.go index 9a36e23e7..802e6709b 100644 --- a/pkg/server/wizard.go +++ b/pkg/server/wizard.go @@ -185,10 +185,10 @@ func handleSetupChange(rw http.ResponseWriter, req *http.Request) { } switch k { - case "TLS": + case "https": b, err := strconv.ParseBool(v[0]) if err != nil { - httputil.ServerError(rw, req, fmt.Errorf("TLS field expects a boolean value")) + httputil.ServerError(rw, req, fmt.Errorf("https field expects a boolean value")) } el = b case "replicateTo":