Skip to content

Commit 3ce9b55

Browse files
committed
Bumped deps
1 parent 6aef655 commit 3ce9b55

File tree

6 files changed

+117
-97
lines changed

6 files changed

+117
-97
lines changed

package-lock.json

+73-64
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"@postalsys/templates": "2.0.0",
6161
"ace-builds": "1.36.5",
6262
"base32.js": "0.1.0",
63-
"bullmq": "5.31.1",
63+
"bullmq": "5.33.0",
6464
"compare-versions": "6.1.1",
6565
"dotenv": "16.4.7",
6666
"encoding-japanese": "2.2.0",

sbom.json

+1-1
Large diffs are not rendered by default.

server.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ const DEFAULT_EENGINE_TIMEOUT = 10 * 1000;
162162
const EENGINE_TIMEOUT = getDuration(readEnvValue('EENGINE_TIMEOUT') || config.service.commandTimeout) || DEFAULT_EENGINE_TIMEOUT;
163163
const DEFAULT_MAX_ATTACHMENT_SIZE = 5 * 1024 * 1024;
164164
const SUBSCRIPTION_CHECK_TIMEOUT = 1 * 24 * 60 * 60 * 1000;
165+
const SUBSCRIPTION_RECHECK_TIMEOUT = 1 * 60 * 60 * 1000;
165166
const SUBSCRIPTION_ALLOW_DELAY = 28 * 24 * 60 * 60 * 1000;
166167

167168
const CONNECTION_SETUP_DELAY = getDuration(readEnvValue('EENGINE_CONNECTION_SETUP_DELAY') || config.service.setupDelay) || 0;
@@ -1186,7 +1187,7 @@ let licenseCheckHandler = async opts => {
11861187
licenseInfo.details = false;
11871188
licenseInfo.type = packageData.license;
11881189
} else {
1189-
let nextCheck = now + SUBSCRIPTION_CHECK_TIMEOUT;
1190+
let nextCheck = now + SUBSCRIPTION_RECHECK_TIMEOUT;
11901191
await redis.hset(`${REDIS_PREFIX}settings`, 'ks', new Date(nextCheck).getTime().toString(16));
11911192
}
11921193
}

0 commit comments

Comments
 (0)