|
|
@@ -110,7 +110,15 @@ namespace Business
|
|
|
// TransactionTimeout = TimeSpan.FromMinutes(1),
|
|
|
// TablePrefix = "Hangfire"
|
|
|
//}));
|
|
|
- config.UseStorage(new MySqlStorage(configuration.GetConnectionString("Default")));
|
|
|
+ config.UseStorage(new MySqlStorage(configuration.GetConnectionString("Default"), new MySqlStorageOptions
|
|
|
+ {
|
|
|
+ QueuePollInterval = TimeSpan.FromSeconds(15),
|
|
|
+ JobExpirationCheckInterval = TimeSpan.FromHours(1),
|
|
|
+ CountersAggregateInterval = TimeSpan.FromMinutes(5),
|
|
|
+ PrepareSchemaIfNecessary = true,
|
|
|
+ DashboardJobListLimit = 50000,
|
|
|
+ TransactionTimeout = TimeSpan.FromMinutes(1),
|
|
|
+ }));
|
|
|
});
|
|
|
}
|
|
|
|