Skip to content

Commit

Permalink
pass config file to get_config (#419)
Browse files Browse the repository at this point in the history
  • Loading branch information
saeedesfandi authored and dan-blanchard committed Jan 31, 2018
1 parent 422d889 commit 8837c15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion streamparse/cli/submit.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def submit_topology(name=None, env_name=None, options=None, force=False,
remote_jar_path=None, timeout=None, config_file=None,
overwrite_virtualenv=False, user='root'):
"""Submit a topology to a remote Storm cluster."""
config = get_config()
config = get_config(config_file=config_file)
name, topology_file = get_topology_definition(name, config_file=config_file)
env_name, env_config = get_env_config(env_name, config_file=config_file)
topology_class = get_topology_from_file(topology_file)
Expand Down

0 comments on commit 8837c15

Please sign in to comment.