Skip to content

Commit 00689ff

Browse files
author
jmccormick2001
committed
Merge branch 'develop' of github.com:crunchydata/postgres-operator into develop
2 parents 8912c7b + 5734f4b commit 00689ff

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

apiserver/root.go

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ import (
2121
"errors"
2222
"flag"
2323
"fmt"
24+
"net/http"
25+
"os"
26+
"strconv"
27+
"strings"
28+
"text/template"
29+
2430
log "github.com/Sirupsen/logrus"
2531
crv1 "github.com/crunchydata/postgres-operator/apis/cr/v1"
2632
"github.com/crunchydata/postgres-operator/config"
@@ -30,11 +36,6 @@ import (
3036
"k8s.io/client-go/kubernetes"
3137
"k8s.io/client-go/rest"
3238
"k8s.io/client-go/tools/clientcmd"
33-
"net/http"
34-
"os"
35-
"strconv"
36-
"strings"
37-
"text/template"
3839
)
3940

4041
const lspvcTemplatePath = "/pgo-config/pgo.lspvc-template.json"
@@ -252,7 +253,7 @@ func getCredentials() {
252253
creds := parseUserMap(v)
253254
Credentials[creds.Username] = creds
254255
}
255-
log.Infof("pgouser has %v", Credentials)
256+
log.Debugf("pgouser has %v", Credentials)
256257

257258
}
258259

0 commit comments

Comments
 (0)