mirror of
https://github.com/minio/minio.git
synced 2025-04-10 06:30:07 -04:00
use acceptedResponseStatusCode everywhere in HTTP logger (#13755)
This commit is contained in:
parent
932500e43d
commit
fee3f88cb5
@ -37,8 +37,11 @@ verify_checksum_mc() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
add_alias() {
|
add_alias() {
|
||||||
until (mc alias set minio http://127.0.0.1:9000 minioadmin minioadmin); do
|
for i in $(seq 1 4); do
|
||||||
echo "...waiting... for 5secs" && sleep 5
|
echo "... attempting to add alias $i"
|
||||||
|
until (mc alias set minio http://127.0.0.1:9000 minioadmin minioadmin); do
|
||||||
|
echo "...waiting... for 5secs" && sleep 5
|
||||||
|
done
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -157,7 +157,7 @@ func (h *Target) startHTTPLogger() {
|
|||||||
// Drain any response.
|
// Drain any response.
|
||||||
xhttp.DrainBody(resp.Body)
|
xhttp.DrainBody(resp.Body)
|
||||||
|
|
||||||
if resp.StatusCode != http.StatusOK {
|
if !acceptedResponseStatusCode(resp.StatusCode) {
|
||||||
switch resp.StatusCode {
|
switch resp.StatusCode {
|
||||||
case http.StatusForbidden:
|
case http.StatusForbidden:
|
||||||
h.config.LogOnce(ctx, fmt.Errorf("%s returned '%s', please check if your auth token is correctly set", h.config.Endpoint, resp.Status), h.config.Endpoint)
|
h.config.LogOnce(ctx, fmt.Errorf("%s returned '%s', please check if your auth token is correctly set", h.config.Endpoint, resp.Status), h.config.Endpoint)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user