Skip to content

Commit

Permalink
Actually implement the --verbose flag in "collector tag show"
Browse files Browse the repository at this point in the history
  • Loading branch information
cvaroqui committed Jun 9, 2023
1 parent 6f3f5ec commit 89c7975
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions opensvc/core/collector/actions.py
Expand Up @@ -280,6 +280,9 @@ def collector_tag_show(self):
opts = {}
if self.path:
opts['svcname'] = self.path
if self.options.verbose:
opts['full'] = True

d = self.collector.call('collector_show_tags', opts)
if d is None:
raise ex.Error("xmlrpc unknown failure")
Expand Down

0 comments on commit 89c7975

Please sign in to comment.