From 2b07ccf775f822f97d9a8e0372cb4e1fc9d94593 Mon Sep 17 00:00:00 2001 From: Brian McMahon Date: Thu, 16 Apr 2026 08:48:47 -0700 Subject: [PATCH] Add alpha-engine-data to boot-pull REPOS on ae-trading MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Today's OOM fix moved DailyData from ae-dashboard (t3.micro) to ae-trading (t3.small) but boot-pull.sh's REPOS list was never updated. Result: alpha-engine-data is checked out on the instance but never refreshes on boot, so commits merged to origin/main never reach the DailyData SSM step. Confirmed gap today while sequencing the daily_data health-stamp rollout (alpha-engine-data#41 → alpha-engine#54): HEAD on the instance was 0728d95 while origin/main was 4a14d0b. A tactical manual pull brought Friday's run up to date; this commit makes it automatic going forward. No code-path changes on Friday's run either way — the list is append-only and boot-pull already handles missing .git dirs gracefully (SKIP log, no error). Co-Authored-By: Claude Opus 4.6 (1M context) --- infrastructure/boot-pull.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/infrastructure/boot-pull.sh b/infrastructure/boot-pull.sh index b8acd86..791b479 100755 --- a/infrastructure/boot-pull.sh +++ b/infrastructure/boot-pull.sh @@ -39,6 +39,7 @@ REPOS=( /home/ec2-user/alpha-engine /home/ec2-user/alpha-engine-backtester /home/ec2-user/alpha-engine-dashboard + /home/ec2-user/alpha-engine-data ) for repo in "${REPOS[@]}"; do