fix(FN-4344): normalize cache lookup commands for optional verification settings

Fusion-Task-Id: FN-4344
Fusion-Task-Lineage: 5c3fc80e-619d-4daf-a224-580cea402b4c
This commit is contained in:
Fusion
2026-05-13 21:57:00 -07:00
committed by gsxdsm
parent a48fc466db
commit 0aa014abb6

View File

@@ -6940,7 +6940,7 @@ export async function aiMergeTask(
});
const treeSha = treeOut.trim();
if (!treeSha) continue;
const cacheHit = store.getVerificationCacheHit(treeSha, effectiveTestCommand, effectiveBuildCommand);
const cacheHit = store.getVerificationCacheHit(treeSha, effectiveTestCommand ?? "", effectiveBuildCommand ?? "");
if (cacheHit) {
verificationPassed = true;
break;