We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d252f45 commit 8b6af1eCopy full SHA for 8b6af1e
packages/daemon/src/config.ts
@@ -84,7 +84,7 @@ export const HEALTHCHECK_SERVER_API_KEY = process.env.HEALTHCHECK_SERVER_API_KEY
84
export const HEALTHCHECK_PING_INTERVAL = parseInt(process.env.HEALTHCHECK_PING_INTERVAL ?? '10000', 10); // 10 seconds
85
86
// Other
87
-export const USE_SSL = process.env.USE_SSL;
+export const USE_SSL = process.env.USE_SSL === 'true';
88
89
// Reorg size thresholds for different alert levels
90
export const REORG_SIZE_INFO = parseInt(process.env.REORG_SIZE_INFO ?? '1', 10);
0 commit comments