Browse Source

don't add multiple retry jobs

Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
tags/v12.0.0beta1
Bjoern Schiessle 7 years ago
parent
commit
7340d6a56c
No account linked to committer's email address
1 changed files with 21 additions and 13 deletions
  1. 21
    13
      apps/lookup_server_connector/lib/BackgroundJobs/RetryJob.php

+ 21
- 13
apps/lookup_server_connector/lib/BackgroundJobs/RetryJob.php View File

@@ -26,6 +26,7 @@ namespace OCA\LookupServerConnector\BackgroundJobs;
use OC\BackgroundJob\Job;
use OCP\BackgroundJob\IJobList;
use OCP\Http\Client\IClientService;
use OCP\ILogger;

class RetryJob extends Job {
/** @var IClientService */
@@ -36,21 +37,28 @@ class RetryJob extends Job {
private $lookupServer = 'https://lookup.nextcloud.com/users';

/**
* @param IClientService|null $clientService
* @param IJobList|null $jobList
* @param IClientService $clientService
* @param IJobList $jobList
*/
public function __construct(IClientService $clientService = null,
IJobList $jobList = null) {
if($clientService !== null) {
$this->clientService = $clientService;
} else {
$this->clientService = \OC::$server->getHTTPClientService();
}
if($jobList !== null) {
$this->jobList = $jobList;
} else {
$this->jobList = \OC::$server->getJobList();
public function __construct(IClientService $clientService,
IJobList $jobList) {
$this->clientService = $clientService;
$this->jobList = $jobList;
}

/**
* run the job, then remove it from the jobList
*
* @param JobList $jobList
* @param ILogger $logger
*/
public function execute($jobList, ILogger $logger = null) {

if ($this->shouldRun($this->argument)) {
parent::execute($jobList, $logger);
$jobList->remove($this, $this->argument);
}

}

protected function run($argument) {

Loading…
Cancel
Save