diff options
author | Valery Piashchynski <[email protected]> | 2021-01-19 16:47:15 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-01-19 16:47:15 +0300 |
commit | 26f9d35e18ef79d79a5609c6c68f1b6ad38c7aed (patch) | |
tree | dd6224660ffd0dcefe2332807203ee1eaf6697b4 /cmd | |
parent | 75ebbaac89ce8ebc3ab8de47b16e137844cfcd8a (diff) |
Uniform all errors operations
Add new ExecTTL event
Update tests
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/cli/reset.go | 4 | ||||
-rw-r--r-- | cmd/cli/serve.go | 4 | ||||
-rw-r--r-- | cmd/cli/workers.go | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/cmd/cli/reset.go b/cmd/cli/reset.go index 504d88ad..a5055a53 100644 --- a/cmd/cli/reset.go +++ b/cmd/cli/reset.go @@ -26,8 +26,8 @@ func init() { }) } -func resetHandler(cmd *cobra.Command, args []string) error { - const op = errors.Op("reset handler") +func resetHandler(_ *cobra.Command, args []string) error { + const op = errors.Op("reset_handler") client, err := RPCClient() if err != nil { return err diff --git a/cmd/cli/serve.go b/cmd/cli/serve.go index 2fe54932..993ec477 100644 --- a/cmd/cli/serve.go +++ b/cmd/cli/serve.go @@ -19,8 +19,8 @@ func init() { }) } -func handler(cmd *cobra.Command, args []string) error { - const op = errors.Op("handle serve command") +func handler(_ *cobra.Command, _ []string) error { + const op = errors.Op("handle_serve_command") /* We need to have path to the config at the RegisterTarget stage But after cobra.Execute, because cobra fills up cli variables on this stage diff --git a/cmd/cli/workers.go b/cmd/cli/workers.go index 47dd2a85..09642a58 100644 --- a/cmd/cli/workers.go +++ b/cmd/cli/workers.go @@ -42,7 +42,7 @@ func init() { } func workersHandler(_ *cobra.Command, args []string) error { - const op = errors.Op("workers cobra handler") + const op = errors.Op("handle_workers_command") // get RPC client client, err := RPCClient() if err != nil { @@ -94,7 +94,7 @@ func workersHandler(_ *cobra.Command, args []string) error { } func showWorkers(plugins []string, client *rpc.Client) error { - const op = errors.Op("show workers") + const op = errors.Op("show_workers") for _, plugin := range plugins { list := &informer.WorkerList{} err := client.Call(InformerWorkers, plugin, &list) |