We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffcd9c0 commit 4f743f4Copy full SHA for 4f743f4
βlib/BackgroundJob/ExpireGroupTrash.php
@@ -22,8 +22,8 @@ public function __construct(
22
ITimeFactory $timeFactory,
23
) {
24
parent::__construct($timeFactory);
25
- // Run once per hour
26
- $this->setInterval(60 * 60);
+ // Run every 30 minutes
+ $this->setInterval(60 * 30);
27
}
28
29
protected function run(mixed $argument): void {
βlib/BackgroundJob/ExpireGroupVersions.php
@@ -26,8 +26,8 @@ public function __construct(
parent::__construct($time);
30
31
// But don't run if still running
32
$this->setAllowParallelRuns(false);
33
0 commit comments