forked from TrueCloudLab/frostfs-s3-gw
[#450] Do not pass nil error to logAndSendError
Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
parent
385437aace
commit
80c6122f55
1 changed files with 1 additions and 1 deletions
|
@ -378,7 +378,7 @@ func (h *handler) PutBucketPolicyHandler(w http.ResponseWriter, r *http.Request)
|
||||||
}
|
}
|
||||||
|
|
||||||
token, err := getSessionTokenSetEACL(r.Context())
|
token, err := getSessionTokenSetEACL(r.Context())
|
||||||
if err == nil {
|
if err != nil {
|
||||||
h.logAndSendError(w, "couldn't get eacl token", reqInfo, err)
|
h.logAndSendError(w, "couldn't get eacl token", reqInfo, err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue