Skip to content

Commit

Permalink
added pftelDB param
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandip117 committed Nov 1, 2023
1 parent 11e3cd3 commit 92179d4
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name = 'topologicalcopy',
version = '1.0.0',
version = '1.0.2',
description = 'A plugin ts app to copy filtered output dirs from a list of plugin instances',
long_description = readme,
author = 'FNNDSC',
Expand Down
7 changes: 6 additions & 1 deletion topologicalcopy/topologicalcopy.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,12 @@ def define_parameters(self):
Define the CLI arguments accepted by this plugin app.
Use self.add_argument to specify a new app argument.
"""
pass
self.add_argument('--pftelDB',
dest='pftelDB',
type=str,
optional=True,
help="an optional pftel telemetry logger, of form '<pftelURL>/api/v1/<object>/<collection>/<event>'",
default='')
@pflog.tel_logTime(
event = 'topologicalcopy',
log = 'Copy filtered output dirs from a list of plugin instances'
Expand Down

0 comments on commit 92179d4

Please sign in to comment.