mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
Fixed: [cronjob manager] Fix execution of one single job
This commit is contained in:
parent
7d469df62a
commit
17461aa21e
@ -153,7 +153,9 @@ class CronManager implements CronManagerInterface
|
|||||||
private function runForce(string $forceJob): void
|
private function runForce(string $forceJob): void
|
||||||
{
|
{
|
||||||
foreach ($this->jobs as $job) {
|
foreach ($this->jobs as $job) {
|
||||||
$job->run();
|
if ($job->getKey() === $forceJob) {
|
||||||
|
$job->run();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user