Skip to content

Commit

Permalink
httpServer.go: 'kvHashedPw.Get unknown cookie' is no error
Browse files Browse the repository at this point in the history
  • Loading branch information
mehrvarz committed Sep 17, 2021
1 parent e8dd659 commit edce91b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion httpServer.go
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ func httpApiHandler(w http.ResponseWriter, r *http.Request) {
err = kvHashedPw.Get(dbHashedPwBucket,cookie.Value,&pwIdCombo)
if err!=nil {
// callee is using an unknown cookie
fmt.Printf("# kvHashedPw.Get %v unknown cookie err=%v\n", r.URL, err)
fmt.Printf("kvHashedPw.Get %v unknown cookie err=%v\n", r.URL, err)
cookie = nil
} else if calleeID!="" && pwIdCombo.CalleeId != calleeID {
// callee is using wrong cookie
Expand Down

0 comments on commit edce91b

Please sign in to comment.