Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
mertalev committed Sep 30, 2024
1 parent ad9efb8 commit 87d60b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/src/repositories/person.repository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class PersonRepository implements IPersonRepository {
.where({ sourceType })
.execute();

await this.vacuum({ reindexVectors: false });
await this.vacuum({ reindexVectors: false });
}

async delete(entities: PersonEntity[]): Promise<void> {
Expand All @@ -72,7 +72,7 @@ export class PersonRepository implements IPersonRepository {
.andWhere('sourceType = :sourceType', { sourceType })
.execute();

await this.vacuum({ reindexVectors: sourceType === SourceType.MACHINE_LEARNING });
await this.vacuum({ reindexVectors: sourceType === SourceType.MACHINE_LEARNING });
}

getAllFaces(
Expand Down

0 comments on commit 87d60b1

Please sign in to comment.