Skip to content

Commit

Permalink
Update src/Service/Indexer/IndexerProgressState.php
Browse files Browse the repository at this point in the history
Co-authored-by: Mario Schäper <95750382+sitepark-schaeper@users.noreply.github.com>
  • Loading branch information
sitepark-veltrup and sitepark-schaeper authored Apr 29, 2024
1 parent dceacc7 commit eff2d80
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/Service/Indexer/IndexerProgressState.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,16 @@ public function __construct(
public function prepare(string $message): void
{
$this->status = new IndexerStatus(
IndexerStatusState::PREPARING,
new DateTime(),
null,
0,
0,
0,
new DateTime(),
0,
0,
$message
state: IndexerStatusState::PREPARING,
startTime: new DateTime(),
endTime: null,
total: 0,
processed: 0,
skipped: 0,
lastUpdate: new DateTime(),
updated: 0,
errors: 0,
prepareMessage: $message,
);
$this->statusStore->store(
$this->getStatusStoreKey(),
Expand Down

0 comments on commit eff2d80

Please sign in to comment.