Skip to content

Commit

Permalink
feat(api): increase max db retries
Browse files Browse the repository at this point in the history
  • Loading branch information
hbriese committed Aug 20, 2024
1 parent c3433f8 commit 1a773a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/core/database/database.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export class DatabaseService implements OnModuleInit {
.withConfig({
allow_user_specified_id: true /* Required for account insertion */,
})
.withRetryOptions({ attempts: 7 });
.withRetryOptions({ attempts: 10 });
this.DANGEROUS_superuserClient = this.__client.withConfig({ apply_access_policies: false });
}

Expand Down

0 comments on commit 1a773a1

Please sign in to comment.