From 5c8200853278331f6b8b0aea9a6eb27ff262d4ac Mon Sep 17 00:00:00 2001 From: Chris Olszewski Date: Fri, 24 Oct 2025 16:42:58 -0400 Subject: [PATCH] chore: enable skip_client_worker_set_check in init_replay_worker --- crates/sdk-core/src/replay/mod.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/sdk-core/src/replay/mod.rs b/crates/sdk-core/src/replay/mod.rs index ff0eaff23..cd088f0e7 100644 --- a/crates/sdk-core/src/replay/mod.rs +++ b/crates/sdk-core/src/replay/mod.rs @@ -63,6 +63,7 @@ where self.config.max_cached_workflows = 1; self.config.workflow_task_poller_behavior = PollerBehavior::SimpleMaximum(1); self.config.no_remote_activities = true; + self.config.skip_client_worker_set_check = true; let historator = Historator::new(self.history_stream); let post_activate = historator.get_post_activate_hook(); let shutdown_tok = historator.get_shutdown_setter();