We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1a92142 + a4585b3 commit 1aad010Copy full SHA for 1aad010
apps/lookup_server_connector/lib/BackgroundJobs/RetryJob.php
@@ -38,6 +38,8 @@ class RetryJob extends Job {
38
private $lookupServer;
39
/** @var int how much time should be between two, will be increased for each retry */
40
private $interval = 100;
41
+ /** @var IConfig */
42
+ private $config;
43
44
/**
45
* @param IClientService $clientService
@@ -49,6 +51,7 @@ public function __construct(IClientService $clientService,
49
51
IConfig $config) {
50
52
$this->clientService = $clientService;
53
$this->jobList = $jobList;
54
+ $this->config = $config;
55
56
if ($config->getSystemValue('has_internet_connection', true) === false) {
57
return;
0 commit comments