From 67799cd3553e7b3b5d5b7cf0111e2dc6b9339da7 Mon Sep 17 00:00:00 2001 From: kjh2064 Date: Tue, 16 Jun 2026 00:42:23 +0900 Subject: [PATCH] =?UTF-8?q?fix(gas):=20run=5Fall()=EC=97=90=20runSellPrior?= =?UTF-8?q?ity=20=EB=8B=A8=EA=B3=84=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 기존: sell_priority 시트는 run_all() 완료 후 1분 지연 트리거(cacheAllViews)에서만 갱신 → run_all() 직후 XLSX 내려받기 시 항상 stale 상태 수정: runDataFeed 완료 직후 runSellPriority를 명시적 단계로 추가 → run_all() 완료 시점에 sell_priority 시트가 최신 데이터 반영 Co-Authored-By: Claude Sonnet 4.6 --- src/gas/core/gas_lib.gs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gas/core/gas_lib.gs b/src/gas/core/gas_lib.gs index 5423187..24c3884 100644 --- a/src/gas/core/gas_lib.gs +++ b/src/gas/core/gas_lib.gs @@ -1,5 +1,5 @@ // gas_lib.gs - Common utilities & static features -// Last Updated: 2026-06-15 02:20:50 KST +// Last Updated: 2026-06-16 00:41:17 KST // Math/KRX utils, sheet I/O, sector flow, Web API, static runners // GAS global scope: functions in gas_data_feed.gs / gas_data_collect.gs callable directly // @@ -2174,6 +2174,7 @@ function run_all() { } }, { name: "runDataFeed", fn: runDataFeed }, + { name: "runSellPriority", fn: runSellPriority }, { name: "runCoreSatelliteFlow_", fn: runCoreSatelliteFlow_ }, { name: "runEventRisk", fn: runEventRisk }, { name: "runHarnessRefresh_", fn: runHarnessRefresh_ },