Skip to content

Commit

Permalink
Merge pull request #1234 from natefoo/pulsar-missing-param
Browse files Browse the repository at this point in the history
[15.10] Add the missing "amqp_ack_republish_time" param for the Pulsar runner
  • Loading branch information
martenson committed Dec 4, 2015
2 parents 516b079 + 107de0e commit 736bf3c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/galaxy/jobs/runners/pulsar.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@
map=specs.to_bool_or_none,
default=None
),
amqp_ack_republish_time=dict(
map=lambda val: None if val == "None" else int(val),
default=None,
),
amqp_consumer_timeout=dict(
map=lambda val: None if val == "None" else float(val),
default=None,
Expand Down

0 comments on commit 736bf3c

Please sign in to comment.