forget to save

This commit is contained in:
einhornimmond 2025-05-14 16:46:20 +02:00
parent 6f06a18b66
commit b28ccc6d8f

View File

@ -42,7 +42,7 @@ async function convertJsToTsInMigrations(connection: Connection): Promise<number
}
export const getDatabaseState = async (): Promise<DatabaseState> => {
const connection = await connectToDatabaseServer()
const connection = await connectToDatabaseServer(CONFIG.DB_CONNECT_RETRY_COUNT, CONFIG.DB_CONNECT_RETRY_DELAY_MS)
if (!connection) {
return DatabaseState.NOT_CONNECTED
}