mirror of
https://github.com/minio/minio.git
synced 2025-04-03 19:30:29 -04:00
sts: Avoid printing all STS errors (#15065)
Limit printing STS errors to - STS internal error - STS not initialized - STS upstream error
This commit is contained in:
parent
21526efe51
commit
dd53b287f2
@ -48,14 +48,10 @@ func writeSTSErrorResponse(ctx context.Context, w http.ResponseWriter, isErrCode
|
|||||||
if errCtxt != nil {
|
if errCtxt != nil {
|
||||||
stsErrorResponse.Error.Message = errCtxt.Error()
|
stsErrorResponse.Error.Message = errCtxt.Error()
|
||||||
}
|
}
|
||||||
var logKind logger.Kind
|
|
||||||
switch errCode {
|
switch errCode {
|
||||||
case ErrSTSInternalError, ErrSTSNotInitialized:
|
case ErrSTSInternalError, ErrSTSNotInitialized, ErrSTSUpstreamError:
|
||||||
logKind = logger.Minio
|
logger.LogIf(ctx, errCtxt, logger.Minio)
|
||||||
default:
|
|
||||||
logKind = logger.All
|
|
||||||
}
|
}
|
||||||
logger.LogIf(ctx, errCtxt, logKind)
|
|
||||||
encodedErrorResponse := encodeResponse(stsErrorResponse)
|
encodedErrorResponse := encodeResponse(stsErrorResponse)
|
||||||
writeResponse(w, err.HTTPStatusCode, encodedErrorResponse, mimeXML)
|
writeResponse(w, err.HTTPStatusCode, encodedErrorResponse, mimeXML)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user