Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
duanewaddleAFS committed Mar 23, 2022
1 parent 08d5c1d commit b88af47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/provider/okta/okta.go
Original file line number Diff line number Diff line change
Expand Up @@ -801,7 +801,7 @@ func verifyMfa(oc *Client, oktaOrgHost string, loginDetails *creds.LoginDetails,
case "WAITING":
correctAnswer := gjson.Get(body,"_embedded.factor._embedded.challenge.correctAnswer")
if(correctAnswer.Exists()) {
log.Println("Number Challenge Value is %d", correctAnswer.Int())
log.Printf("Number Challenge Value is %d", correctAnswer.Int())
}
time.Sleep(3 * time.Second)
logger.Debug("Waiting for user to authorize login")
Expand Down

0 comments on commit b88af47

Please sign in to comment.