From 53fb82ea72a6edb4478f87f7126d6f5b75fdcd96 Mon Sep 17 00:00:00 2001 From: Cody Soyland Date: Fri, 26 Apr 2019 15:55:10 -0500 Subject: [PATCH] remove errant debugging println Co-Authored-By: jaffee --- http/handler.go | 1 - 1 file changed, 1 deletion(-) diff --git a/http/handler.go b/http/handler.go index 8fd3b446c..7d59c5b89 100644 --- a/http/handler.go +++ b/http/handler.go @@ -420,7 +420,6 @@ func (h *Handler) handleGetSchema(w http.ResponseWriter, r *http.Request) { } func (h *Handler) handlePostSchema(w http.ResponseWriter, r *http.Request) { - fmt.Println("here") schema := &pilosa.Schema{} if err := json.NewDecoder(r.Body).Decode(schema); err != nil { http.Error(w, fmt.Sprintf("decoding request as JSON Pilosa schema: %v", err), http.StatusBadRequest)