From 801a5446bfc9ff2da5875ce614bfea5d7bbecd8f Mon Sep 17 00:00:00 2001 From: Chandragupt Singh Date: Fri, 27 Feb 2026 20:32:40 +0530 Subject: [PATCH] debug: revert artifact freshness sentinel string TIMING_PATCH_ACTIVE was a temporary diagnostic string added to verify that GitHub Actions was building fresh artifacts from the correct branch commit, and not serving a stale cached binary. Build freshness was confirmed. Reverted back to INVALID. --- src/rust/lib_ccxr/src/time/timing.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rust/lib_ccxr/src/time/timing.rs b/src/rust/lib_ccxr/src/time/timing.rs index 9885cb1e..73bbfb10 100644 --- a/src/rust/lib_ccxr/src/time/timing.rs +++ b/src/rust/lib_ccxr/src/time/timing.rs @@ -155,7 +155,7 @@ impl TimingContext { .current_pts .as_timestamp(timing_info.mpeg_clock_freq) .to_hms_millis_time(':') - .unwrap_or_else(|_| "TIMING_PATCH_ACTIVE".to_string()); + .unwrap_or_else(|_| "INVALID".to_string()); let fts_string = self .fts_now