Fix typo in oauth error (#23270)

fixes: #23269
pull/23200/head
John McBride 6 years ago committed by GitHub
parent 51e485e26b
commit b017e437d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      pkg/api/pluginproxy/ds_proxy.go

@ -302,7 +302,7 @@ func checkWhiteList(c *models.ReqContext, host string) bool {
func addOAuthPassThruAuth(c *models.ReqContext, req *http.Request) {
authInfoQuery := &models.GetAuthInfoQuery{UserId: c.UserId}
if err := bus.Dispatch(authInfoQuery); err != nil {
logger.Error("Error feching oauth information for user", "error", err)
logger.Error("Error fetching oauth information for user", "error", err)
return
}

Loading…
Cancel
Save