log error when to write response body in readonly filter

This commit is contained in:
wangyan 2018-04-10 23:00:17 -07:00
parent 5f1feee9de
commit d005ff941f

View File

@ -19,6 +19,7 @@ import (
"regexp"
"github.com/astaxie/beego/context"
"github.com/vmware/harbor/src/common/utils/log"
"github.com/vmware/harbor/src/ui/config"
)
@ -42,7 +43,10 @@ func filter(req *http.Request, resp http.ResponseWriter) {
}
if matchRepoTagDelete(req) {
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)
}
}
}