Merge pull request #4627 from wy65701436/fix-readonly-issue

Log error when to write response body in readonly filter
This commit is contained in:
Daniel Jiang 2018-04-11 17:15:58 +08:00 committed by GitHub
commit 1be9f9af20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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)
}
}
}