Skip to content

Commit

Permalink
fix changing to next cycle
Browse files Browse the repository at this point in the history
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
  • Loading branch information
blizzz committed Jan 8, 2018
1 parent 0d3f945 commit 7c3db54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/user_ldap/lib/Jobs/Sync.php
Original file line number Diff line number Diff line change
Expand Up @@ -146,11 +146,11 @@ public function run($argument) {
if ($expectMoreResults) {
$this->increaseOffset($cycleData);
} else {
$this->determineNextCycle();
$this->determineNextCycle($cycleData);
}
$this->updateInterval();
} catch (ServerNotAvailableException $e) {
$this->determineNextCycle();
$this->determineNextCycle($cycleData);
}
}

Expand Down

0 comments on commit 7c3db54

Please sign in to comment.