mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-23 02:35:17 +01:00
log error when to write response body in readonly filter
This commit is contained in:
parent
5f1feee9de
commit
d005ff941f
@ -19,6 +19,7 @@ import (
|
|||||||
"regexp"
|
"regexp"
|
||||||
|
|
||||||
"github.com/astaxie/beego/context"
|
"github.com/astaxie/beego/context"
|
||||||
|
"github.com/vmware/harbor/src/common/utils/log"
|
||||||
"github.com/vmware/harbor/src/ui/config"
|
"github.com/vmware/harbor/src/ui/config"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -42,7 +43,10 @@ func filter(req *http.Request, resp http.ResponseWriter) {
|
|||||||
}
|
}
|
||||||
if matchRepoTagDelete(req) {
|
if matchRepoTagDelete(req) {
|
||||||
resp.WriteHeader(http.StatusServiceUnavailable)
|
resp.WriteHeader(http.StatusServiceUnavailable)
|
||||||
resp.Write([]byte("The system is in read only mode. Any modification is not prohibited."))
|
_, err := resp.Write([]byte("The system is in read only mode. Any modification is not prohibited."))
|
||||||
|
if err != nil {
|
||||||
|
log.Errorf("failed to write response body: %v", err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user