Fix DeleteOrphanedSharesJob
* remove unneeded use statements * the the interval properly in the constructor * set the log level to debug (from info) - fixes #16036
This commit is contained in:
parent
17fedc80da
commit
760ce3bd63
1 changed files with 8 additions and 3 deletions
|
@ -22,8 +22,6 @@
|
||||||
|
|
||||||
namespace OCA\Files_sharing\Lib;
|
namespace OCA\Files_sharing\Lib;
|
||||||
|
|
||||||
use Doctrine\DBAL\Platforms\SqlitePlatform;
|
|
||||||
use OCP\IDBConnection;
|
|
||||||
use OC\BackgroundJob\TimedJob;
|
use OC\BackgroundJob\TimedJob;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -38,6 +36,13 @@ class DeleteOrphanedSharesJob extends TimedJob {
|
||||||
**/
|
**/
|
||||||
protected $defaultIntervalMin = 15;
|
protected $defaultIntervalMin = 15;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sets the correct interval for this timed job
|
||||||
|
*/
|
||||||
|
public function __construct(){
|
||||||
|
$this->interval = $this->defaultIntervalMin * 60;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Makes the background job do its work
|
* Makes the background job do its work
|
||||||
*
|
*
|
||||||
|
@ -53,7 +58,7 @@ class DeleteOrphanedSharesJob extends TimedJob {
|
||||||
'AND NOT EXISTS (SELECT `fileid` FROM `*PREFIX*filecache` WHERE `file_source` = `fileid`)';
|
'AND NOT EXISTS (SELECT `fileid` FROM `*PREFIX*filecache` WHERE `file_source` = `fileid`)';
|
||||||
|
|
||||||
$deletedEntries = $connection->executeUpdate($sql);
|
$deletedEntries = $connection->executeUpdate($sql);
|
||||||
$logger->info("$deletedEntries orphaned share(s) deleted", ['app' => 'DeleteOrphanedSharesJob']);
|
$logger->debug("$deletedEntries orphaned share(s) deleted", ['app' => 'DeleteOrphanedSharesJob']);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue