在哪里配置 Hangfire 中的 AutomaticRetryAttribute 过滤器?

Where to configure the AutomaticRetryAttribute filter in Hangfire?

我们正在使用 Hangfire,应该重试失败的作业。我们使用以下方法来指定重试次数:

GlobalJobFilters.Filters.Add(new AutomaticRetryAttribute { Attempts = 3 });

我们的问题是:我们必须在哪里配置这个过滤器?在将项目放入队列的程序或在处理队列项目的处理服务?

你在processing service配置filter,和文档中的per method属性一样