We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 633dbb8 commit 6144fbeCopy full SHA for 6144fbe
src/config/env.config.ts
@@ -251,8 +251,8 @@ export class ConfigService {
251
LABELS: process.env?.STORE_LABELS === 'true',
252
},
253
CLEAN_STORE: {
254
- CLEANING_INTERVAL: Number.isInteger(process.env?.CLEAN_STORE_CLEANING_TERMINAL)
255
- ? Number.parseInt(process.env.CLEAN_STORE_CLEANING_TERMINAL)
+ CLEANING_INTERVAL: Number.isInteger(process.env?.CLEAN_STORE_CLEANING_INTERVAL)
+ ? Number.parseInt(process.env.CLEAN_STORE_CLEANING_INTERVAL)
256
: 7200,
257
MESSAGES: process.env?.CLEAN_STORE_MESSAGES === 'true',
258
MESSAGE_UP: process.env?.CLEAN_STORE_MESSAGE_UP === 'true',
0 commit comments