diff options
author | Valery Piashchynski <[email protected]> | 2020-12-15 17:59:20 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-12-15 17:59:20 +0300 |
commit | 089a202aa716f3510402ff8baf47a3b9bfaefcb8 (patch) | |
tree | c0d889ab896804da239dd3e1bd16de0bdd70e379 /plugins/resetter/rpc.go | |
parent | 21b51367e27f5a1b166459a115e4655d07a5d832 (diff) |
Update reloader to support new container
Diffstat (limited to 'plugins/resetter/rpc.go')
-rw-r--r-- | plugins/resetter/rpc.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/resetter/rpc.go b/plugins/resetter/rpc.go index ecc51bb3..344c6681 100644 --- a/plugins/resetter/rpc.go +++ b/plugins/resetter/rpc.go @@ -7,7 +7,7 @@ type rpc struct { log log.Logger } -// List all resettable services. +// List all resettable plugins. func (rpc *rpc) List(_ bool, list *[]string) error { rpc.log.Debug("started List method") *list = make([]string, 0) @@ -21,7 +21,7 @@ func (rpc *rpc) List(_ bool, list *[]string) error { return nil } -// Reset named service. +// Reset named plugin. func (rpc *rpc) Reset(service string, done *bool) error { rpc.log.Debug("started Reset method for the service", "service", service) defer rpc.log.Debug("finished Reset method for the service", "service", service) |