Skip to content

Commit

Permalink
Merge pull request mesosphere#27 from foosinn/fix-tests
Browse files Browse the repository at this point in the history
fix invalid error log message
  • Loading branch information
jr0d authored May 7, 2020
2 parents ffa3b03 + bac26e1 commit 5d70c6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ func (s *Server) AuthHandler(rule string) http.HandlerFunc {
// Authorize user
groups, err := s.getGroupsFromSession(r)
if err != nil {
logger.Errorf("error getting groups from session: %w", err)
logger.Errorf("error getting groups from session: %v", err)
s.notAuthenticated(logger, w, r)
return
}
Expand Down

0 comments on commit 5d70c6f

Please sign in to comment.