Running Deadline 6.1.53441 (Beta 9) on OSX 10.8
Just had a task report as completed but it had actually failed half way through having been unable to write a file (not sure why). Logs attached.
Chris
Job_2013-11-18_21-30-38_528a86feb09ca20abf2357c6.txt (31.4 KB)
Looks like we need to add a stdout handler for "V-Ray error: " messages. We’ll get that fixed soon. For now, you should be able to add the handler yourself if this is still a problem. Go to \your\repository\plugins\MayaBatch and open MayaBatch.py in a text editor. Find this section of code:
if renderer == "vray" or renderer == "vrayexport":
self.AddStdoutHandlerCallback( "V-Ray: Building light cache*" ).HandleCallback += self.HandleVrayMessage
Change it to this:
if renderer == "vray" or renderer == "vrayexport":
self.AddStdoutHandlerCallback( "V-Ray error: .*" ).HandleCallback += self.HandleFatalError
self.AddStdoutHandlerCallback( "V-Ray: Building light cache*" ).HandleCallback += self.HandleVrayMessage
Then save the file. Do the same thing for MayaCmd.py in \your\repository\plugins\MayaCmd. This should get you by for now.
Thanks for reporting this!
Thanks, done that so will let you know if it happens again.
Cheers,
Chris