missing update in clear

This commit is contained in:
einhornimmond 2025-05-14 16:49:41 +02:00
parent cc491b010d
commit 8611187a0a

View File

@ -27,7 +27,10 @@ export async function truncateTables(connection: Connection) {
}
export async function clearDatabase() {
const connection = await connectToDatabaseServer()
const connection = await connectToDatabaseServer(
CONFIG.DB_CONNECT_RETRY_COUNT,
CONFIG.DB_CONNECT_RETRY_DELAY_MS,
)
if (!connection) {
throw new Error('Could not connect to database server')
}