示例#1
0
 def __init__(self):
     LoggingCommand.__init__(self)
     _add_common_options(self)
     self.parser.add_option("-V","--version",action="store",type="string", 
         dest="pegasus_version",default=None, help = "Pegasus version")
     self.parser.add_option("-e", "--version-value", action="store_false", dest="version_value",
                            default=True, help="Show actual version values")
示例#2
0
 def __init__(self):
     LoggingCommand.__init__(self)
     _add_common_options(self)
     self.parser.add_option("-V","--version",action="store",type="string", 
         dest="pegasus_version",default=None, help = "Pegasus version.")
     self.parser.add_option("-a", "--all", action="store_true", dest="all",
         default=False, help="Downgrade all databases of completed workflows in MASTER.")
示例#3
0
 def __init__(self):
     LoggingCommand.__init__(self)
     self.parser.add_option(
         "-H",
         "--host",
         dest="host",
         default=app.config["SERVER_HOST"],
         help="Network interface on which to listen for requests"
     )
     self.parser.add_option(
         "-p",
         "--port",
         dest="port",
         type='int',
         default=app.config["SERVER_PORT"],
         help="Request listener port"
     )
     self.parser.add_option(
         "-d",
         "--debug",
         action="store_true",
         dest="debug",
         default=None,
         help="Enable debugging"
     )
示例#4
0
 def __init__(self):
     LoggingCommand.__init__(self)
     self.parser.add_option(
         "-i",
         "--wf-uuid",
         dest="wf_uuid",
         help="Specify wf_uuid of the workflow to be detached.")
示例#5
0
 def __init__(self):
     LoggingCommand.__init__(self)
     self.parser.add_option("-d",
                            "--debug",
                            action="store_true",
                            dest="debug",
                            default=None,
                            help="Enable debugging")
示例#6
0
 def __init__(self):
     LoggingCommand.__init__(self)
     _add_common_options(self)
     self.parser.add_option("-e",
                            "--version-value",
                            action="store_false",
                            dest="version_value",
                            default=True,
                            help="Show actual version values.")
示例#7
0
 def __init__(self):
     LoggingCommand.__init__(self)
     self.parser.add_option(
         "-H",
         "--host",
         dest="host",
         default=app.config["SERVER_HOST"],
         help="Network interface on which to listen for requests")
     self.parser.add_option("-p",
                            "--port",
                            dest="port",
                            type='int',
                            default=app.config["SERVER_PORT"],
                            help="Request listener port")
     self.parser.add_option("-d",
                            "--debug",
                            action="store_true",
                            dest="debug",
                            default=None,
                            help="Enable debugging")
示例#8
0
 def __init__(self):
     LoggingCommand.__init__(self)
     self.parser.add_option("-i", "--wf-uuid", dest="wf_uuid",
                            help="Specify wf_uuid of the workflow to be detached.")
示例#9
0
 def __init__(self):
     LoggingCommand.__init__(self)
     _add_common_options(self)
示例#10
0
 def __init__(self):
     LoggingCommand.__init__(self)
     _add_common_options(self)
     self.parser.add_option("-V","--version",action="store",type="string", 
         dest="pegasus_version",default=None, help = "Pegasus version.")
示例#11
0
文件: commands.py 项目: juve/pegasus
 def __init__(self):
     LoggingCommand.__init__(self)
     _add_common_options(self)
示例#12
0
文件: commands.py 项目: juve/pegasus
 def __init__(self):
     LoggingCommand.__init__(self)
     _add_common_options(self)
     self.parser.add_option("-e", "--version-value", action="store_false", dest="version_value",
                            default=True, help="Show actual version values.")
示例#13
0
 def __init__(self):
     LoggingCommand.__init__(self)
     self.parser.add_option("-d", "--debug", action="store_true", dest="debug",
                            default=None, help="Enable debugging")