Hello,
I’ve found three issues with the FTrack event so far.
The first problem is in [Deadline Repository]/events/FTrack/FTrack.py. In updateThumbnail on line 240, it’s choosing the wrong frame for the thumbnail. I was trying to render 1001-1060, but it thought the first frame was 0001. I was able to fix this by changing thumbFrame = job.FramesList[0] to thumbFrame = job.JobFramesList[0]. But after fixing this, the next error showed up which was at line 249. The error was FTrackError: Invalid file type. The file type was exr. I’m not sure how to deal with this error other than comment out the updateThumbnail call, which isn’t a real solution.
The third issue I’m getting is line 92 in createComponents. Right before it fails it logs: INFO: Creating Component for Deadline output ‘V:\PROJECTS\Erik_Tests_WORK\FA_010\2D\comps\renders\FA_010_test\FA_010_test.%04d.exr [1001-1060]’…
And the error ProtocolError: <ProtocolError for eightvfx.ftrackapp.com//client/: 500 Internal Server Error>. I don’t know how to deal with this one either.
EDIT: I tried again today and the third issue stopped happening, but the first two are still a problem.
- Deadline Version: 7.0.0.25 R (79978a431)
- Windows 7
- ftrack event submitted from Nuke
- Enable ftrack events. Create a Nuke script that writes an exr sequence. Open the Deadline submitter in Nuke. Do all the ftrack connecting and setup, then submit. Wait for the render to finish, then it should start an ftrack event which will error out.