Skip to content

Commit

Permalink
quick fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
damcou committed Aug 18, 2022
1 parent 8e4b651 commit 693d2e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Console/Commands/ReImportCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public function handle(
$config->set('scout.queue', $useQueues);

tap($this->output)->progressAdvance()
->text("Replacing index <info>{$index->getIndexName()}</info> by index <info>{$temporaryName}</info>");
->text("Replacing index <info>{$index}</info> by index <info>{$temporaryName}</info>");

try {
$client->getSettings($temporaryName);
Expand Down
2 changes: 1 addition & 1 deletion src/Jobs/UpdateJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public function handle(SearchClient $client): void

$requests = [];
foreach ($objectsToSave as $objectToSave) {
$requests += [
$requests[] = [
'action' => 'addObject',
'body' => $objectToSave
];
Expand Down

0 comments on commit 693d2e8

Please sign in to comment.