I have two custom filters which implement IServerFilter. Running locally in debug mode, the OnPeformed method is never being called in either of the filters. Both filters are registered globally. All other methodsof the filters seem to work fine and I can hit breakpoints in the other methods (e.g. OnCreating). Any ideas on why this wouldn’t be working? Am I missing something?
Ok…my bad. Apparently, I had a parent job which was running on a different server and the continuation job also went to that server even though I had a queue attribute on the child job. Once I put the queue attribute on the parent job, I was able to capture the OnPerformed breakpoint.