Skip to content

Commit

Permalink
back shortly
Browse files Browse the repository at this point in the history
  • Loading branch information
alnutile committed Apr 11, 2024
1 parent 14a0840 commit 0588b8b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/Jobs/SummarizeDataJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function middleware(): array
}

return [(
new WithoutOverlapping($this->documentChunk->document->collection_id)
new WithoutOverlapping($this->documentChunk->getDriver())
)];
}

Expand Down
2 changes: 1 addition & 1 deletion app/Jobs/VectorlizeDataJob.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function middleware(): array
}

return [(
new WithoutOverlapping($this->documentChunk->document->collection_id)
new WithoutOverlapping($this->documentChunk->getDriver())
)];
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ class ReindexCollectionControllerTest extends TestCase
*/
public function test_reindex(): void
{
$this->markTestSkipped("@TODO had to get back to work!");
$this->markTestSkipped('@TODO had to get back to work!');
}
}

0 comments on commit 0588b8b

Please sign in to comment.