Event Plugin enviorments

I just switched a pipeline database call, from a postJobScript on a jab, to a OnJobFinished call back in a custom event.
Everything seems be called correctly, however the environment I set on my job doesn’t seem to be used when the event script runs. It was picking up fine in the postJobScript.
I am getting missing python modules from my code.

Does the Even Plugins inherit the Job environment or do I have to set it up another way?

The events get run in their own sandbox, separate from the rendering sandbox. Though you do have access to the job object and could pull the environment set for the job and set them as a part of starting up your event.

1 Like

gotcha, thanks Justin

1 Like