Skip to content

Commit

Permalink
Remove error log on waking
Browse files Browse the repository at this point in the history
  • Loading branch information
pawelblaszczyk5 committed Jan 4, 2024
1 parent 1578ec3 commit 61056e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions prisma/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ const tryWakingUpDatabase = async () => {

try {
await new PrismaClient({ datasources: { db: { url: DATABASE_PUBLIC_URL } } }).$connect();
} catch (error_) {
console.log(error_);
} catch {
/* empty */
}
};

Expand Down

0 comments on commit 61056e9

Please sign in to comment.