diff options
author | Wolfy-J <[email protected]> | 2018-07-08 13:06:05 -0700 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-07-08 13:06:05 -0700 |
commit | 29c9bf94350e86ec96f5ce5eeb476dfcd57302cd (patch) | |
tree | 9f59af6446958d144b7de91b5005a3727dc90661 /cmd | |
parent | 3c3a7801100f29c99a5e446646c818bf16ccd5f0 (diff) |
dependency injection and lighter service Init methods.
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/rr/http/reset.go | 2 | ||||
-rw-r--r-- | cmd/rr/http/workers.go | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cmd/rr/http/reset.go b/cmd/rr/http/reset.go index 431b7e88..3bc089ec 100644 --- a/cmd/rr/http/reset.go +++ b/cmd/rr/http/reset.go @@ -39,7 +39,7 @@ func init() { func reloadHandler(cmd *cobra.Command, args []string) error { svc, st := rr.Container.Get(rpc.ID) - if st < service.StatusConfigured { + if st < service.StatusOK { return errors.New("RPC service is not configured") } diff --git a/cmd/rr/http/workers.go b/cmd/rr/http/workers.go index e697816f..b03c273f 100644 --- a/cmd/rr/http/workers.go +++ b/cmd/rr/http/workers.go @@ -74,7 +74,7 @@ func workersHandler(cmd *cobra.Command, args []string) (err error) { }() svc, st := rr.Container.Get(rrpc.ID) - if st < service.StatusConfigured { + if st < service.StatusOK { return errors.New("RPC service is not configured") } |