mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Merge pull request #5949 from ynput/bugfix/OP-7378-blender-deadline_chunk_size_issue
Blender: Fix Deadline Frames per task
This commit is contained in:
commit
68161692f3
8 changed files with 77 additions and 28 deletions
|
|
@ -237,6 +237,7 @@ class BlenderSubmitDeadlineModel(BaseSettingsModel):
|
|||
priority: int = Field(title="Priority")
|
||||
chunk_size: int = Field(title="Frame per Task")
|
||||
group: str = Field("", title="Group Name")
|
||||
job_delay: str = Field("", title="Delay job (timecode dd:hh:mm:ss)")
|
||||
|
||||
|
||||
class AOVFilterSubmodel(BaseSettingsModel):
|
||||
|
|
@ -438,7 +439,8 @@ DEFAULT_DEADLINE_PLUGINS_SETTINGS = {
|
|||
"use_published": True,
|
||||
"priority": 50,
|
||||
"chunk_size": 10,
|
||||
"group": "none"
|
||||
"group": "none",
|
||||
"job_delay": "00:00:00:00"
|
||||
},
|
||||
"ProcessSubmittedCacheJobOnFarm": {
|
||||
"enabled": True,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue