Skip to content
This repository has been archived by the owner on Mar 22, 2018. It is now read-only.

Commit

Permalink
bug: Fixes config argument issue in service scripts.
Browse files Browse the repository at this point in the history
The argument should be config_file. It was previously known as config.

Resolves #45
  • Loading branch information
ashcrow authored and mbarnes committed Jan 23, 2017
1 parent c6b8ac6 commit da1b24e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/commissaire_service/clusterexec/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ def main(): # pragma: no cover
service = ClusterExecService(
exchange_name=args.bus_exchange,
connection_url=args.bus_uri,
config_file=args.config)
config_file=args.config_file)
service.run()
except KeyboardInterrupt:
pass
Expand Down
2 changes: 1 addition & 1 deletion src/commissaire_service/containermgr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def main(): # pragma: no cover
service = ContainerManagerService(
exchange_name=args.bus_exchange,
connection_url=args.bus_uri,
config_file=args.config)
config_file=args.config_file)
service.run()
except KeyboardInterrupt:
pass
Expand Down
2 changes: 1 addition & 1 deletion src/commissaire_service/investigator/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def main(): # pragma: no cover
service = InvestigatorService(
exchange_name=args.bus_exchange,
connection_url=args.bus_uri,
config_file=args.config)
config_file=args.config_file)
service.run()
except KeyboardInterrupt:
pass
Expand Down
2 changes: 1 addition & 1 deletion src/commissaire_service/storage/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def main(): # pragma: no cover
service = StorageService(
exchange_name=args.bus_exchange,
connection_url=args.bus_uri,
config_file=args.config)
config_file=args.config_file)
service.run()
except KeyboardInterrupt:
pass
Expand Down
2 changes: 1 addition & 1 deletion src/commissaire_service/watcher/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def main(): # pragma: no cover
service = WatcherService(
exchange_name=args.bus_exchange,
connection_url=args.bus_uri,
config_file=args.config)
config_file=args.config_file)
service.run()
except KeyboardInterrupt:
pass
Expand Down

0 comments on commit da1b24e

Please sign in to comment.