update deps to latest releases (#3425)

This commit is contained in:
Harshavardhana
2024-08-17 14:52:48 -07:00
committed by GitHub
parent 8d13be5e87
commit 0b07cb3885
5 changed files with 803 additions and 376 deletions

View File

@@ -156,7 +156,7 @@ func serveWS(w http.ResponseWriter, req *http.Request) {
session, err := auth.GetClaimsFromTokenInRequest(req)
if err != nil && (errors.Is(err, auth.ErrReadingToken) && !strings.HasPrefix(wsPath, `/objectManager`)) {
ErrorWithContext(ctx, err)
errorsApi.ServeError(w, req, errorsApi.New(http.StatusUnauthorized, err.Error()))
errorsApi.ServeError(w, req, errorsApi.New(http.StatusUnauthorized, "%v", err))
return
}