Skip to content

Commit f5c1584

Browse files
chris-olszewskiyuandrew
authored andcommitted
enable skip validation for replay workers
1 parent 15f08a5 commit f5c1584

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/core-bridge/src/worker.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,9 +405,10 @@ pub fn replay_worker_new(
405405
OpaqueOutboundHandle<Worker>,
406406
OpaqueOutboundHandle<HistoryForReplayTunnelHandle>,
407407
)> {
408-
let config = config
408+
let mut config = config
409409
.into_core_config()
410410
.context("Failed to convert WorkerOptions to CoreWorkerConfig")?;
411+
config.skip_client_worker_set_check = true;
411412

412413
let runtime = runtime.borrow()?.core_runtime.clone();
413414
enter_sync!(runtime);

0 commit comments

Comments
 (0)