Kashyap Shah

Results 5 comments of Kashyap Shah

Happening for me too. I wish to find a solution to this. Again, it's only for long running jobs that run into each other.

Set QueuePollInterval to 30 and it resolved the issue for me.

> @kashyapus u mean QueuePollInterval = TimeSpan.FromSeconds(30) (30 seconds or other value u meant? > Thanks in advance for answer :) Yes you are correct. TimeSpan.FromSeconds(30)

I wanted something similar in our implementation as I wanted to implement UOW and use the same container that the job context is using, so that we can commit db...

I had to do a work around but I achieved solution to this by putting container used by JobActivator/JobActivatorScope onto a thread safe static property that can be accessed anywhere...