diff --git a/pkg/settings/kv_decoder_test.go b/pkg/settings/kv_decoder_test.go index 96fd282b8..c91b2c97e 100644 --- a/pkg/settings/kv_decoder_test.go +++ b/pkg/settings/kv_decoder_test.go @@ -161,6 +161,4 @@ func TestDecodeKV_WithFinalTag(t *testing.T) { "isFinal": types.JSONText(`{"Foo":"final42","Sub":{"SubFoo":42}}`), } ) - - spew.Dump(DecodeKV(kv, &aux), aux) } diff --git a/system/service/sink.go b/system/service/sink.go index 69133edf6..a01ebfb7f 100644 --- a/system/service/sink.go +++ b/system/service/sink.go @@ -11,8 +11,6 @@ import ( "strings" "time" - "github.com/davecgh/go-spew/spew" - "github.com/cortezaproject/corteza-server/pkg/actionlog" internalAuth "github.com/cortezaproject/corteza-server/pkg/auth" "github.com/cortezaproject/corteza-server/pkg/eventbus" @@ -231,7 +229,6 @@ func (svc sink) handleRequest(r *http.Request) (*SinkRequestUrlParams, error) { sap.setSinkParams(srup) if srup.SignatureInPath != signatureFoundInPath { - spew.Dump(srup, r.URL, signatureFoundInPath) return nil, SinkErrMisplacedSignature(sap) }