From b54e8a18af42f7960b38ac4783bff919962c9ca8 Mon Sep 17 00:00:00 2001
From: Manuel Kieweg <mail@manuelkieweg.de>
Date: Wed, 30 Sep 2020 17:30:23 +0100
Subject: [PATCH] disabled debug mode

---
 restconf/client/ciena/client.go | 1 -
 1 file changed, 1 deletion(-)

diff --git a/restconf/client/ciena/client.go b/restconf/client/ciena/client.go
index bb47bbd38..a384c683d 100644
--- a/restconf/client/ciena/client.go
+++ b/restconf/client/ciena/client.go
@@ -31,7 +31,6 @@ func NewMCPClient(endpoint, username, password string, database *database.Databa
 	// create the transport
 	transport := httptransport.New(endpoint, "/", nil)
 	transport.Transport.(*http.Transport).TLSClientConfig = &tls.Config{InsecureSkipVerify: true}
-	transport.Debug = true
 	// create the API client, with the transport
 	basicAuth := httptransport.BasicAuth(username, password)
 	// authenticate client
-- 
GitLab