From 11c48e4289522abbf93e1eaaa1462adca9c310be Mon Sep 17 00:00:00 2001 From: Joey Wang Date: Fri, 4 Sep 2026 15:58:47 -0400 Subject: [PATCH] REMOTE-2111: promote PeriodicHandoffCheckpoints to PREVIEW_FLAGS Second stage of the staged rollout for the periodic workspace-handoff checkpoint coordinator. Moves FeatureFlag::PeriodicHandoffCheckpoints from DOGFOOD_FLAGS to PREVIEW_FLAGS so the coordinator is exercised on preview/canary builds (which also covers dogfood, since PREVIEW_FLAGS is automatically included there) ahead of a stable rollout via RELEASE_FLAGS. Co-Authored-By: Warp --- crates/warp_features/src/lib.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/crates/warp_features/src/lib.rs b/crates/warp_features/src/lib.rs index 49e10d2ae9a..5e0f32d497d 100644 --- a/crates/warp_features/src/lib.rs +++ b/crates/warp_features/src/lib.rs @@ -965,7 +965,8 @@ pub enum FeatureFlag { /// Enables periodic workspace-handoff checkpoints during a cloud agent run, /// rather than only uploading a workspace snapshot once at end-of-run. /// Requires `OzHandoff` to also be enabled; a no-op for local runs and when - /// `--no-snapshot` is set. Off by default while the coordinator rolls out. + /// `--no-snapshot` is set. Enabled for dogfood and preview builds while the + /// coordinator bakes ahead of a stable rollout. PeriodicHandoffCheckpoints, /// Observes Ctrl-C (`0x03`) written on the shared-session viewer input @@ -1068,7 +1069,6 @@ pub const DOGFOOD_FLAGS: &[FeatureFlag] = &[ FeatureFlag::McpJsonTreeView, FeatureFlag::BoxDrawingGlyphs, FeatureFlag::PricingTransparency, - FeatureFlag::PeriodicHandoffCheckpoints, FeatureFlag::CtrlCCancelsThirdPartyHarness, FeatureFlag::WarpingModelName, FeatureFlag::LrcActivitySignal, @@ -1081,6 +1081,7 @@ pub const PREVIEW_FLAGS: &[FeatureFlag] = &[ FeatureFlag::NativeShellCompletions, FeatureFlag::ShellWidgetHandoff, FeatureFlag::HistorySearchRankingV2, + FeatureFlag::PeriodicHandoffCheckpoints, ]; /// Features enabled for all release builds (i.e.: everything but WarpLocal).