We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c73038 commit f578f43Copy full SHA for f578f43
apps/sim/drizzle.config.ts
@@ -21,14 +21,8 @@ if (env.DATABASE_SSL_CERT) {
21
}
22
23
process.once('exit', cleanup)
24
- process.once('SIGINT', () => {
25
- cleanup()
26
- process.exit(0)
27
- })
28
- process.once('SIGTERM', () => {
29
30
31
+ process.once('SIGINT', cleanup)
+ process.once('SIGTERM', cleanup)
32
} catch {
33
// If writing fails, leave sslConfig undefined and allow connection to fail fast
34
0 commit comments