如何防止Hangfire重复作业在连续执行30分钟后重新启动(How to prevent a Hangfire recurring job from restarting after 30 minutes of continuous execution)

 var options = new SqlServerStorageOptions 
{
InvisibilityTimeout = TimeSpan .FromMinutes(30)//默认值
};

GlobalConfiguration.Configuration.UseSqlServerStorage(“< name or connection string>”,options);


http://www.it1352.com/895067.html

原文地址:https://www.cnblogs.com/lyl6796910/p/11244186.html