Skip to content
Snippets Groups Projects
Commit 6b813f56 authored by Joas Schilling's avatar Joas Schilling
Browse files

Do not delete background jobs, in case an exception occured

This approach is not valid anymore. It initially was added for jobs
of non existing apps. But jobs of non-existing apps can not be created
so they will never be executed and so this call just catches other
cases which were not intended.

This reverts commit 4f4ad724.
parent 22d1b128
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,6 @@ abstract class Job implements IJob {
if ($logger) {
$logger->error('Error while running background job: ' . $e->getMessage());
}
$jobList->remove($this, $this->argument);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment