Skip to content
This repository has been archived by the owner on Sep 29, 2020. It is now read-only.

Commit

Permalink
remove an errant print when converting a config to the new format
Browse files Browse the repository at this point in the history
(cherry picked from commit 726b3be)
  • Loading branch information
sungo committed Mar 4, 2019
1 parent d65a5fc commit 8b809da
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions pkg/config/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import (
"encoding/base64"
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"strings"
"time"
Expand Down Expand Up @@ -107,7 +106,6 @@ func NewFromJSON(j string) (c *ConchConfig, err error) {
jwt := conch.ConchJWT{}

bits := strings.Split(p.JWT, ".")
fmt.Println(bits)
if len(bits) == 3 {
token := bits[0] + "." + bits[1]
sig := bits[2]
Expand Down

0 comments on commit 8b809da

Please sign in to comment.