get rid of debugging to pass test

This commit is contained in:
John Adams 2018-05-14 17:54:47 -07:00
parent bd2a8eace3
commit a70902f83c

View file

@ -62,8 +62,6 @@ func (c *Client) acquireToken(role string, secret string) (string, error) {
}
c.secret_acq_at = float64(time.Now().Unix())
fmt.Println("Got token %s with expiry %d and acquired at %v", token, c.secret_ttl, c.secret_acq_at)
return token, err
}