fix(gas): run_all()에 runSellPriority 단계 추가

기존: sell_priority 시트는 run_all() 완료 후 1분 지연 트리거(cacheAllViews)에서만 갱신
→ run_all() 직후 XLSX 내려받기 시 항상 stale 상태

수정: runDataFeed 완료 직후 runSellPriority를 명시적 단계로 추가
→ run_all() 완료 시점에 sell_priority 시트가 최신 데이터 반영

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-16 00:42:23 +09:00
parent 3041fa6eaa
commit 67799cd355
+2 -1
View File
@@ -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_ },