diff options
author | Valery Piashchynski <[email protected]> | 2021-02-03 17:31:17 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2021-02-03 17:31:17 +0300 |
commit | 8eda5dc6f0f7e05d7b3d62e1861af05b49a2574a (patch) | |
tree | fae66ad49d2a4624a7caf45a5bf07d53e5c7d26f /plugins/informer/rpc.go | |
parent | 20a1a5d2eb26090e0eef0e6772330ee2a52526fa (diff) |
Fix memory leak in the Worker.go
Diffstat (limited to 'plugins/informer/rpc.go')
-rw-r--r-- | plugins/informer/rpc.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/informer/rpc.go b/plugins/informer/rpc.go index c036ae96..55a9832b 100644 --- a/plugins/informer/rpc.go +++ b/plugins/informer/rpc.go @@ -26,7 +26,6 @@ func (rpc *rpc) List(_ bool, list *[]string) error { *list = append(*list, name) } rpc.log.Debug("list of services", "list", *list) - rpc.log.Debug("successfully finished List method") return nil } |