Skip to content

Commit

Permalink
Support automator version in the AdminResponse. KC-729
Browse files Browse the repository at this point in the history
  • Loading branch information
sk-keeper committed Mar 22, 2024
1 parent 1aa7712 commit ee5b156
Show file tree
Hide file tree
Showing 3 changed files with 392 additions and 356 deletions.
2 changes: 2 additions & 0 deletions keepercommander/commands/automator.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,8 @@ def dump_automator(endpoint, status=False): # type: (automator_proto.Automato
logging.info('{0:>32s}: {1}'.format('Name', endpoint.name))
logging.info('{0:>32s}: {1}'.format('Node ID', endpoint.nodeId))
logging.info('{0:>32s}: {1}'.format('URL', endpoint.url))
if endpoint.version:
logging.info('{0:>32s}: {1}'.format('Version', endpoint.version))
logging.info('{0:>32s}: {1}'.format('Enabled', 'Yes' if endpoint.enabled else 'No'))
if status:
logging.info('{0:>32s}: {1}'.format('Initialized', 'Yes' if endpoint.status.initialized else 'No'))
Expand Down
Loading

0 comments on commit ee5b156

Please sign in to comment.