0
TimMackey created
bool deleted = await _backgroundJobManager.DeleteAsync(backgroundJobId);
DeleteAsync returns true. The job is removed from AbpBackgroundJob table. Yet the background job continues to run Why? How can I stop the execution of a background job?
3 Answer(s)
-
0
Yet the background job continues to run Why?
Will this deleted job be executed once or continue to execute regularly?
-
0
The job runs to completion (several minutes) and completes normally.
-
0
The built-in Background Job function is relatively simple. If the job has already started, you can't stop it. You can consider using Hangfire.