fix error

This commit is contained in:
Tan Jiang 2017-06-16 15:15:40 +08:00
parent 04b9ee5cfd
commit ad7990b07c

View File

@ -623,7 +623,7 @@ func (ra *RepositoryAPI) GetSignatures() {
//ScanImage handles request POST /api/repository/$repository/tags/$tag/scan to trigger image scan manually. //ScanImage handles request POST /api/repository/$repository/tags/$tag/scan to trigger image scan manually.
func (ra *RepositoryAPI) ScanImage() { func (ra *RepositoryAPI) ScanImage() {
if !config.WithClair() { if !config.WithClair() {
logger.Warningf("Harbor is not deployed with Clair, scan is disabled.") log.Warningf("Harbor is not deployed with Clair, scan is disabled.")
ra.RenderError(http.StatusServiceUnavailable, "") ra.RenderError(http.StatusServiceUnavailable, "")
return return
} }