Nuke/Deadline Issue

There’s an option in Nuke while firing local render to “continue on error”, how do I enable this while submitting the job through Deadline…

This option currently isn’t supported by Deadline. We weren’t actually aware of it, so thanks for bringing this to our attention! We’ll add this option to the next Deadline release.

If you wanted to modify the Nuke plugin so that it always passes this option, you can do so by editing the Nuke.py file in \your\repository\plugins\Nuke.

Find this line:

renderarguments = "-V"

Then add a couple of lines after it, like this:

renderarguments = "-V"

if self.Version >= 6:
	renderarguments += " -cont"

Cheers,

  • Ryan