You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[LogEverything]
public class LongJob
{
public void Execute()
{
Console.WriteLine("LongJob Started at {0}", DateTime.UtcNow.ToLongDateString());
Task.Delay(6 * 60 * 1000).GetAwaiter().GetResult();
Console.WriteLine("LongJob Finished at {0}", DateTime.UtcNow.ToLongDateString());
}
}
When the custom job filter attribute is not working when it is annotated at the class or method. It works only when registered as Global job filter.
Replication Steps:
only works when the attribute is registered as Global filter using
.UseFilter(new LogEverythingAttribute())
The text was updated successfully, but these errors were encountered: