Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V8.0.0+hotfix.5 Mainnet Release #3678

Merged
merged 11 commits into from
Jan 6, 2025
Merged
2 changes: 1 addition & 1 deletion installer/installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ install_aliases() {

install_directory() {
ARCHIVE_REPOSITORY_URL="github.com/OriginTrail/ot-node/archive"
BRANCH="v8/release/testnet"
BRANCH="v6/release/testnet"
BRANCH_DIR="/root/ot-node-8-release-testnet"

perform_step wget https://$ARCHIVE_REPOSITORY_URL/$BRANCH.zip "Downloading node files"
Expand Down
4 changes: 2 additions & 2 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
@@ -1,6 +1,6 @@
{
"name": "origintrail_node",
"version": "8.0.0+hotfix.4",
"version": "8.0.0+hotfix.5",
"description": "OTNode V8",
"main": "index.js",
"type": "module",
Expand Down
6 changes: 3 additions & 3 deletions src/constants/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -831,8 +831,8 @@ export const OPERATION_ID_COMMAND_CLEANUP_TIME_MILLS = 24 * 60 * 60 * 1000;
* finalized commands command cleanup interval time 24h
*/

export const PUBLISH_STORAGE_MEMORY_CLEANUP_COMMAND_CLEANUP_TIME_MILLS = 4 * 60 * 60 * 1000;
export const PUBLISH_STORAGE_FILE_CLEANUP_COMMAND_CLEANUP_TIME_MILLS = 24 * 60 * 60 * 1000;
export const PUBLISH_STORAGE_MEMORY_CLEANUP_COMMAND_CLEANUP_TIME_MILLS = 2 * 60 * 60 * 1000;
export const PUBLISH_STORAGE_FILE_CLEANUP_COMMAND_CLEANUP_TIME_MILLS = 2 * 60 * 60 * 1000;

export const FINALIZED_COMMAND_CLEANUP_TIME_MILLS = 24 * 60 * 60 * 1000;

Expand Down Expand Up @@ -878,7 +878,7 @@ export const COMMAND_STATUS = {
REPEATING: 'REPEATING',
};

export const PENDING_STORAGE_FILES_FOR_REMOVAL_MAX_NUMBER = 100;
export const PENDING_STORAGE_FILES_FOR_REMOVAL_MAX_NUMBER = 100_000;

export const OPERATION_ID_FILES_FOR_REMOVAL_MAX_NUMBER = 100;

Expand Down
Loading