diff options
author | Valery Piashchynski <[email protected]> | 2021-08-31 14:59:28 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-08-31 14:59:28 +0300 |
commit | 31cf040029eb0b26278e4a9948cbc1aba77ed58b (patch) | |
tree | 884dd2991acf12826752632b8321410e7cc923ce /plugins/resetter | |
parent | 2f44878a7eac71d7b81e66246b46c615a95892d7 (diff) |
Naming: service -> plugin
Fix bug with survived workers in the debug mode
Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'plugins/resetter')
-rw-r--r-- | plugins/resetter/plugin.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/resetter/plugin.go b/plugins/resetter/plugin.go index b2fe59af..191185ae 100644 --- a/plugins/resetter/plugin.go +++ b/plugins/resetter/plugin.go @@ -21,7 +21,7 @@ func (p *Plugin) Reset(name string) error { const op = errors.Op("resetter_plugin_reset_by_name") svc, ok := p.registry[name] if !ok { - return errors.E(op, errors.Errorf("no such service: %s", name)) + return errors.E(op, errors.Errorf("no such plugin: %s", name)) } return svc.Reset() |