Merge pull request #14529 from nextcloud/regression/13491/fix-missing-dependency

Fix missing $config dependency in RetryJob
This commit is contained in:
Morris Jobke 2019-03-05 11:01:39 +01:00 committed by GitHub
commit 1aad0100b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -38,6 +38,8 @@ class RetryJob extends Job {
private $lookupServer;
/** @var int how much time should be between two, will be increased for each retry */
private $interval = 100;
/** @var IConfig */
private $config;
/**
* @param IClientService $clientService
@ -49,6 +51,7 @@ class RetryJob extends Job {
IConfig $config) {
$this->clientService = $clientService;
$this->jobList = $jobList;
$this->config = $config;
if ($config->getSystemValue('has_internet_connection', true) === false) {
return;