diff --git a/prisma/deploy.ts b/prisma/deploy.ts index 4c41a73..a6645f4 100644 --- a/prisma/deploy.ts +++ b/prisma/deploy.ts @@ -14,6 +14,8 @@ if (!DATABASE_PUBLIC_URL) { } const tryWakingUpDatabase = async () => { + console.log('Trying to wake up database via public URL'); + try { await new PrismaClient({ datasources: { db: { url: DATABASE_PUBLIC_URL } } }).$connect(); } catch (error_) {