← back to Gmc Titlefix
step-d: add LIMIT env knob for staged batches (verify-gate preserved)
3ac823335091911c074718fc5283adaee7597f8c · 2026-06-17 16:09:42 -0700 · SteveStudio2
Files touched
Diff
commit 3ac823335091911c074718fc5283adaee7597f8c
Author: SteveStudio2 <stevestudio2@SteveStacStudio.lan>
Date: Wed Jun 17 16:09:42 2026 -0700
step-d: add LIMIT env knob for staged batches (verify-gate preserved)
---
step-d-scale-all.js | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/step-d-scale-all.js b/step-d-scale-all.js
index dfffb95..521ff08 100644
--- a/step-d-scale-all.js
+++ b/step-d-scale-all.js
@@ -10,7 +10,10 @@ if(!process.env.SKIP_VERIFY_GATE && !fs.existsSync('/tmp/gmc-titlefix-verify-pas
console.error('Run step-b then step-c and confirm the canary title flipped before scaling 29,672 offers.');
process.exit(2);
}
-const list=require('./gmc_titlefix_list.json');
+const fullList=require('./gmc_titlefix_list.json');
+const LIMIT=process.env.LIMIT?parseInt(process.env.LIMIT,10):fullList.length;
+const list=fullList.slice(0,LIMIT);
+console.log(`Pushing title overrides for ${list.length}${LIMIT<fullList.length?` (LIMIT of ${fullList.length})`:''} offers → ${DS}`);
const sleep=ms=>new Promise(r=>setTimeout(r,ms));
(async()=>{
let tok=await token(), tokAt=Date.now(), ok=0, fail=0;
← 18e376c canary diag: verified full override chain (supplemental→owni
·
back to Gmc Titlefix
·
spotcheck: verify 500-batch title flips landed on Google (8/ 278654a →