husk command submit via commandline-plugin.
this way is very easy and render usd on husk works well.
C:/Program Files/Side Effects Software/Houdini 20.0.547/bin/husk.exe --usd-input <usd file> --output <output file> -f 1001 -n 24
but, deadline does not receive Alfred progress from husk.exe.
it shows only two status, 0% or 100%.
i have add code bellow into "CommandLine.py" on deadline-repository, but it's not solved this problem.
if job finished, the log exported "alfred style progress".but the log exported after job finished.
def InitializeProcess( self ): self.AddStdoutHandlerCallback( r"ALF_PROGRESS ([0-9]+(?=%))" ).HandleCallback += self.HandleStdoutProgress def HandleStdoutProgress(self): self.SetProgress(float(self.GetRegexMatch(1)))
please tell me if you know, how to solve this?
thanks