Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-12-21 11:47:07 +0300
committerThomas Müller <thomas.mueller@tmit.eu>2015-12-21 11:47:07 +0300
commit0b913f00c7e49c57d2e0068854b5d4c133b0cb36 (patch)
tree51d1c6e25d73ac651000d209820ce0090393f9de /lib
parenta635975d19873ba660bc378d45da722ae09dea74 (diff)
parent54558bb5b296740233036601d2b3eb7f87ee48c4 (diff)
Merge pull request #21289 from owncloud/issue-20399-keep-periodic-background-jobs
Do not delete background jobs, in case an exception occured
Diffstat (limited to 'lib')
-rw-r--r--lib/private/backgroundjob/job.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/private/backgroundjob/job.php b/lib/private/backgroundjob/job.php
index 88682cd09bb..40a27491fe6 100644
--- a/lib/private/backgroundjob/job.php
+++ b/lib/private/backgroundjob/job.php
@@ -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);
}
}