Update go version and error on token auth
All checks were successful
ci/woodpecker/push/build Pipeline was successful

Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
This commit is contained in:
2026-05-17 12:47:05 +02:00
parent 8d6e46efd0
commit 9e8ddd9433
2 changed files with 2 additions and 2 deletions

View File

@@ -1 +1 @@
golang 1.26.2
golang 1.26.3

View File

@@ -40,7 +40,7 @@ func (srv *PublicTokensServer) AuthenticateWithToken(ctx context.Context, in *to
if errors.Is(err, controllers.ErrServerError) {
return nil, status.Error(codes.Internal, "Something is broken on our side")
}
return nil, status.Error(codes.Aborted, "Couldn't list tokens")
return nil, status.Error(codes.Aborted, "Couldn't authorize")
}
jwtData := &controllers.JWTData{