From 0a9946976d31ea9e79ab285bbe7691827f86061d Mon Sep 17 00:00:00 2001 From: Phil Brookes Date: Tue, 20 Feb 2018 09:55:57 +0000 Subject: [PATCH] remove commented code and debugging output --- pkg/cmd/clientConfig.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pkg/cmd/clientConfig.go b/pkg/cmd/clientConfig.go index c5c45d3..58832c1 100644 --- a/pkg/cmd/clientConfig.go +++ b/pkg/cmd/clientConfig.go @@ -77,8 +77,6 @@ kubectl plugin mobile get clientconfig`, return errors.Wrap(err, "failed to get mobile client with clientID "+clientID) } - fmt.Printf("spec: %+v\n", client.Spec) - ms := listServices(ns, ccc.k8Client) for _, svc := range ms { var svcConfig *ServiceConfig @@ -89,9 +87,6 @@ kubectl plugin mobile get clientconfig`, includedService = false } } - // if !includedService { - // continue - // } configMap, err := ccc.k8Client.CoreV1().ConfigMaps(ns).Get(svc.Name, v1.GetOptions{}) // ignoring not found as some services will not have this public configmap if err != nil {