Search found 4 matches

by lukasm
Tue Jun 06, 2017 3:10 pm
Forum: General
Topic: frame checking
Replies: 1
Views: 3829

frame checking

Hello! I tried using framechecking in the python service. It seems that on any numeric task only the first frame is checked. I think it would be best to do it on all frames. The problem is, that taskinfo["files"] in the python service class contains always only the first frame of a numeric...
by lukasm
Thu Mar 23, 2017 6:37 pm
Forum: General
Topic: Parser Error not working as expected
Replies: 10
Views: 14384

Re: Parser Error not working as expected

Hi! I managed to create a really simple test/debug scenario. This is my job submission: import sys import af job = af.Job('test') mycmd = 'sleep 300' block = af.Block('block', 'generic') job.blocks.append(block) block.setParser('myparser') block.setCommand(mycmd, False) block.setTasksName('task @#@'...
by lukasm
Thu Mar 23, 2017 3:42 pm
Forum: General
Topic: Parser Error not working as expected
Replies: 10
Views: 14384

Re: Parser Error not working as expected

Hi! I tested it with a simple job sent by job.py: When using the generic service and parser the job finished normally. Then I added just one line of code in the "do"-Function of the parser: self.error = True -> now the job still behaves normally and shows his error. Then I switched back to...
by lukasm
Thu Mar 16, 2017 2:30 pm
Forum: General
Topic: Parser Error not working as expected
Replies: 10
Views: 14384

Parser Error not working as expected

Hello, I'm having an issue with the error thrown by a python parser: In my implemented nuke parser class I'm setting self.error=True. As I understood it, afanasy should then get a Parser Bad Result (PBR) error and restart this task. In my case, the task stays on the state RUN, but in the background ...