We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff9f811 commit 3f92ea5Copy full SHA for 3f92ea5
1 file changed
src/webhook_launcher/app/boss.py
@@ -53,10 +53,10 @@ def launch(process, fields):
53
with open(process, mode='r') as process_file:
54
pdef = process_file.read()
55
56
- launcher = Launcher(amqp_host = settings.BOSS_HOST,
57
- amqp_user = settings.BOSS_USER,
58
- amqp_pass = settings.BOSS_PASS,
59
- amqp_vhost = settings.BOSS_VHOST)
+ launcher = Launcher(amqp_host=settings.BOSS_HOST,
+ amqp_user=settings.BOSS_USER,
+ amqp_pass=settings.BOSS_PASS,
+ amqp_vhost=settings.BOSS_VHOST)
60
61
fields_dict = get_process_params(process) or {}
62
fields_dict.update(fields)
@@ -68,9 +68,10 @@ def launch(process, fields):
68
def launch_queue(fields):
69
launch(settings.VCSCOMMIT_QUEUE, fields)
70
71
+
72
def launch_notify(fields):
73
launch(settings.VCSCOMMIT_NOTIFY, fields)
74
75
76
def launch_build(fields):
77
launch(settings.VCSCOMMIT_BUILD, fields)
-
0 commit comments