From 8061f8099f4f1b8dffa3daf3a7cf8c5cc91c44b7 Mon Sep 17 00:00:00 2001 From: ktechmidas <920871+ktechmidas@users.noreply.github.com> Date: Tue, 24 Feb 2026 09:37:45 +0300 Subject: [PATCH 1/2] fix(dashmate): lower HP node RAM requirement to 7.3GB Nodes with a nominal 8GB allocation typically only have ~7.6GB usable due to OS and firmware overhead, causing them to fail the system requirements check. Lower the threshold to 7.3GB to accommodate this. Co-Authored-By: Claude Opus 4.6 --- packages/dashmate/src/doctor/verifySystemRequirementsFactory.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/dashmate/src/doctor/verifySystemRequirementsFactory.js b/packages/dashmate/src/doctor/verifySystemRequirementsFactory.js index 66f7355d471..08ce63d4ade 100644 --- a/packages/dashmate/src/doctor/verifySystemRequirementsFactory.js +++ b/packages/dashmate/src/doctor/verifySystemRequirementsFactory.js @@ -29,7 +29,7 @@ export default function verifySystemRequirementsFactory() { ) { const MINIMUM_CPU_CORES = isHP ? 4 : 2; const MINIMUM_CPU_FREQUENCY = 2.4; // GHz - const MINIMUM_RAM = isHP ? 8 : 4; // GB + const MINIMUM_RAM = isHP ? 7.3 : 4; // GB const MINIMUM_DISK_SPACE = overrideRequirements.diskSpace ?? (isHP ? 200 : 100); // GB const problems = []; From b1ef1c3447167daf7f3ea19df86bd30d92aac429 Mon Sep 17 00:00:00 2001 From: ktechmidas <920871+ktechmidas@users.noreply.github.com> Date: Tue, 24 Feb 2026 09:40:06 +0300 Subject: [PATCH 2/2] fix(dashmate): lower regular node RAM requirement to 3.6GB Same reasoning as the HP node change - nominal 4GB allocations from hosting providers typically only provide ~3.7-3.8GB usable RAM. Co-Authored-By: Claude Opus 4.6 --- packages/dashmate/src/doctor/verifySystemRequirementsFactory.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/dashmate/src/doctor/verifySystemRequirementsFactory.js b/packages/dashmate/src/doctor/verifySystemRequirementsFactory.js index 08ce63d4ade..f4ed0196a5a 100644 --- a/packages/dashmate/src/doctor/verifySystemRequirementsFactory.js +++ b/packages/dashmate/src/doctor/verifySystemRequirementsFactory.js @@ -29,7 +29,7 @@ export default function verifySystemRequirementsFactory() { ) { const MINIMUM_CPU_CORES = isHP ? 4 : 2; const MINIMUM_CPU_FREQUENCY = 2.4; // GHz - const MINIMUM_RAM = isHP ? 7.3 : 4; // GB + const MINIMUM_RAM = isHP ? 7.3 : 3.6; // GB const MINIMUM_DISK_SPACE = overrideRequirements.diskSpace ?? (isHP ? 200 : 100); // GB const problems = [];