1
0
mirror of https://github.com/mattermost/focalboard.git synced 2025-07-15 23:54:29 +02:00

Revert "MM-49703: Bump to Go 1.19 (#4489)" (#4499)

This reverts commit 2d0dde21dd.
This commit is contained in:
Doug Lauder
2023-01-20 11:28:27 -05:00
committed by GitHub
parent 2d0dde21dd
commit 50e15f3804
34 changed files with 62 additions and 65 deletions

View File

@ -383,13 +383,12 @@ func (a *API) attachSession(handler func(w http.ResponseWriter, r *http.Request)
authService := session.AuthService
if authService != a.authService {
msg := `Session authService mismatch`
a.logger.Error(msg,
a.logger.Error(`Session authService mismatch`,
mlog.String("sessionID", session.ID),
mlog.String("want", a.authService),
mlog.String("got", authService),
)
a.errorResponse(w, r, model.NewErrUnauthorized(msg))
a.errorResponse(w, r, model.NewErrUnauthorized(err.Error()))
return
}