Skip to content

Commit 29cdd60

Browse files
authored
Merge pull request #3439 from jmchilton/fix_resubmissions
Fix bug with job re-submission introduced in 34f0b0f
2 parents d2e0198 + 9373b69 commit 29cdd60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/galaxy/jobs/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ def __parse_job_conf_xml(self, tree):
243243
job_destination['env'] = self.__get_envs(destination)
244244
destination_resubmits = self.__get_resubmits(destination)
245245
if destination_resubmits:
246-
resubmits = self.default_resubmits
246+
resubmits = destination_resubmits
247247
else:
248248
resubmits = self.default_resubmits
249249
job_destination["resubmit"] = resubmits

0 commit comments

Comments
 (0)