diff --git a/internal/cmd/config/config.go b/internal/cmd/config/config.go index 6b9b4babc4..7061b7e566 100644 --- a/internal/cmd/config/config.go +++ b/internal/cmd/config/config.go @@ -672,7 +672,7 @@ func Parse(d string) (*Config, error) { } result.Controller.GetDownstreamWorkersTimeoutDuration = t } - if result.Controller.GetDownstreamWorkersTimeoutDuration <= 0 { + if result.Controller.GetDownstreamWorkersTimeoutDuration < 0 { return nil, errors.New("get downstream workers timeout must be greater than 0") }