From 28c2235d1c6215cf9877af174fae00b39617d3b9 Mon Sep 17 00:00:00 2001 From: Jason Bian Date: Mon, 2 Mar 2026 18:12:25 -0500 Subject: [PATCH] Use state-logs blob store for state uploads MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Changed the default Netlify Blob store from 'order-book' to 'state-logs' to write state snapshots directly to long-term storage while the UI manages the cut-over between blob stores. This allows the UI to handle reading from both old (order-book) and new (state-logs) blob stores during the transition period without the archive workflow interfering by moving blobs between stores. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- trading_system/state/blob_logger.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trading_system/state/blob_logger.py b/trading_system/state/blob_logger.py index 64baae9..b2efffb 100644 --- a/trading_system/state/blob_logger.py +++ b/trading_system/state/blob_logger.py @@ -15,7 +15,7 @@ NETLIFY_BLOBS_URL = "https://api.netlify.com/api/v1/blobs" -STORE_NAME = "order-book" +STORE_NAME = "state-logs" # Using state-logs while UI manages cut-overs LOCAL_LOG_DIR = Path(__file__).resolve().parent.parent.parent / "state_logs"