Skip to content

Commit

Permalink
Fix submission of multiple fusion render instances in one go by also …
Browse files Browse the repository at this point in the history
…storing `instance.data["deadline"]` correctly to each instance
  • Loading branch information
BigRoy committed Dec 11, 2024
1 parent 65332c3 commit 07cd782
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,10 @@ def process(self, instance):

# Store the response for dependent job submission plug-ins for all
# the instances
transfer_keys = ["deadlineSubmissionJob", "deadline"]
for saver_instance in saver_instances:
saver_instance.data["deadlineSubmissionJob"] = (
instance.data["deadlineSubmissionJob"]
)
for key in transfer_keys:
saver_instance.data[key] = instance.data[key]

def get_job_info(self, job_info=None, **kwargs):
instance = self._instance
Expand Down

0 comments on commit 07cd782

Please sign in to comment.