Fix #392: Use IsJobExecutionEnabled instead of IsEnabled.

pull/395/head
Halil ibrahim Kalkan 7 years ago
parent 75efc234dd
commit 0299133ec3

@ -15,7 +15,7 @@ namespace Volo.Abp.BackgroundJobs
{
context.Services.Configure<BackgroundJobOptions>(options =>
{
options.IsEnabled = false;
options.IsJobExecutionEnabled = false;
});
context.Services.AddAssemblyOf<BackgroundJobsTestBaseModule>();

Loading…
Cancel
Save