Skip to content

Commit

Permalink
Fix error after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldix authored and otoolep committed Apr 2, 2015
1 parent 332c427 commit b13385f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.go
Original file line number Diff line number Diff line change
Expand Up @@ -2037,7 +2037,7 @@ func (s *Server) ExecuteQuery(q *influxql.Query, database string, user *User, ch
// Authorize user to execute the query.
if s.authenticationEnabled {
if err := s.Authorize(user, q, database); err != nil {
return Results{Err: err}
return nil, err
}
}

Expand Down

0 comments on commit b13385f

Please sign in to comment.