We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 926fc00 commit 2a3c693Copy full SHA for 2a3c693
src/datastore/postgres-store.ts
@@ -746,7 +746,7 @@ export class PgDataStore extends (EventEmitter as { new (): DataStoreEventEmitte
746
} finally {
747
client.end(() => {});
748
}
749
- } while (initTimer.getElapsed() < 30000);
+ } while (initTimer.getElapsed() < Number.MAX_SAFE_INTEGER);
750
if (!connectionOkay) {
751
connectionError = connectionError ?? new Error('Error connecting to database');
752
throw connectionError;
0 commit comments