Skip to content

Commit

Permalink
Bumped deps
Browse files Browse the repository at this point in the history
  • Loading branch information
andris9 committed Dec 9, 2024
1 parent 6aef655 commit 3ce9b55
Show file tree
Hide file tree
Showing 6 changed files with 117 additions and 97 deletions.
137 changes: 73 additions & 64 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"@postalsys/templates": "2.0.0",
"ace-builds": "1.36.5",
"base32.js": "0.1.0",
"bullmq": "5.31.1",
"bullmq": "5.33.0",
"compare-versions": "6.1.1",
"dotenv": "16.4.7",
"encoding-japanese": "2.2.0",
Expand Down
2 changes: 1 addition & 1 deletion sbom.json

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ const DEFAULT_EENGINE_TIMEOUT = 10 * 1000;
const EENGINE_TIMEOUT = getDuration(readEnvValue('EENGINE_TIMEOUT') || config.service.commandTimeout) || DEFAULT_EENGINE_TIMEOUT;
const DEFAULT_MAX_ATTACHMENT_SIZE = 5 * 1024 * 1024;
const SUBSCRIPTION_CHECK_TIMEOUT = 1 * 24 * 60 * 60 * 1000;
const SUBSCRIPTION_RECHECK_TIMEOUT = 1 * 60 * 60 * 1000;
const SUBSCRIPTION_ALLOW_DELAY = 28 * 24 * 60 * 60 * 1000;

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

0 comments on commit 3ce9b55

Please sign in to comment.