Nuke: adding concurrent tasks attribute to job submission

also adding to settings
This commit is contained in:
Jakub Jezek 2022-04-01 14:42:39 +02:00
parent 5fc3c9f0f8
commit d63a0aad71
No known key found for this signature in database
GPG key ID: D8548FBF690B100A
3 changed files with 17 additions and 0 deletions

View file

@ -27,6 +27,7 @@ class NukeSubmitDeadline(pyblish.api.InstancePlugin):
# presets
priority = 50
chunk_size = 1
concurent_task = 1
primary_pool = ""
secondary_pool = ""
group = ""
@ -177,6 +178,7 @@ class NukeSubmitDeadline(pyblish.api.InstancePlugin):
"Priority": priority,
"ChunkSize": chunk_size,
"ConcurrentTasks": self.concurent_task,
"Department": self.department,
"Pool": self.primary_pool,