diff --git a/cli/config.go b/cli/config.go index 084cb629..f0ed057a 100644 --- a/cli/config.go +++ b/cli/config.go @@ -115,7 +115,7 @@ type Asset struct { func (a *Asset) Validate() error { if a.DeleteAssetsTimeout == 0 { - return errors.New("delete assets timeout is required") + return errors.New("delete assets timeout must greater than 0 second") } return nil