remove errant debugging println

Co-Authored-By: jaffee <matthew.jaffee@gmail.com>
This commit is contained in:
Cody Soyland 2019-04-26 15:55:10 -05:00 committed by GitHub
parent 0ef3e5e144
commit 53fb82ea72
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)