[fix] forgot date in rdsJob.

This commit is contained in:
guillaume91 2024-06-26 14:32:11 +02:00
parent 42eb932ff8
commit 8e0a9c3b26

View file

@ -57,7 +57,7 @@ public function handle(): void
// Success // Success
logger($process->getOutput()); logger($process->getOutput());
$this->download->setStatusSuccess(); $this->download->setStatusSuccess();
dispatch(ProjectDownloadRDSJob::fromDate($this->download->project,$this->days)); dispatch(ProjectDownloadRDSJob::fromDate($this->download->project, $this->date, $this->days));
} }