We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f5baf0 commit 41c84abCopy full SHA for 41c84ab
src/index.ts
@@ -30,15 +30,15 @@ const prisma = new PrismaClient({
30
31
redis.connect().then(() => {
32
log.info("Connected to Redis");
33
-}).catch((err) => {
+}).catch((err: any) => {
34
log.fatal("Failed to connect to Redis");
35
log.fatal(err.message);
36
log.fatal(err.stack ? err.stack.toString() : '');
37
process.exit(1);
38
});
39
prisma.$connect().then(() => {
40
log.info("Connected to Postgres");
41
42
log.fatal("Failed to connect to Postgres");
43
44
0 commit comments