MCPcopy Create free account
hub / github.com/apache/storm / initialize_localconfvalue_subcommand

Function initialize_localconfvalue_subcommand

bin/storm.py:349–357  ·  view source on GitHub ↗
(subparsers)

Source from the content-addressed store, hash-verified

347
348
349def initialize_localconfvalue_subcommand(subparsers):
350 command_help = '''Prints out the value for conf-name in the local Storm configs.
351 The local Storm configs are the ones in ~/.storm/storm.yaml merged
352 in with the configs in defaults.yaml.'''
353
354 sub_parser = subparsers.add_parser("localconfvalue", help=command_help, formatter_class=SortingHelpFormatter)
355 sub_parser.add_argument("conf_name")
356 sub_parser.set_defaults(func=print_localconfvalue)
357 add_common_options(sub_parser)
358
359
360def initialize_remoteconfvalue_subcommand(subparsers):

Callers 1

initialize_main_commandFunction · 0.85

Calls 1

add_common_optionsFunction · 0.85

Tested by

no test coverage detected