Skip to content

Commit a720a26

Browse files
update core and remove bridge config altering
1 parent fecc241 commit a720a26

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

packages/core-bridge/sdk-core

packages/core-bridge/src/worker.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -399,10 +399,9 @@ pub fn replay_worker_new(
399399
OpaqueOutboundHandle<Worker>,
400400
OpaqueOutboundHandle<HistoryForReplayTunnelHandle>,
401401
)> {
402-
let mut config = config
402+
let config = config
403403
.into_core_config()
404404
.context("Failed to convert WorkerOptions to CoreWorkerConfig")?;
405-
config.skip_client_worker_set_check = true;
406405

407406
let runtime = runtime.borrow()?.core_runtime.clone();
408407
enter_sync!(runtime);

packages/test/src/test-integration-workflows.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -460,9 +460,7 @@ test('Worker requests Eager Activity Dispatch if possible', async (t) => {
460460
workflowBundle: undefined,
461461
});
462462
const workflowWorkerConnection = await createNativeConnection();
463-
t.teardown(() => {
464-
workflowWorkerConnection.close();
465-
});
463+
t.teardown(() => workflowWorkerConnection.close());
466464
const workflowWorker = await createWorker({
467465
connection: workflowWorkerConnection,
468466
activities: {

0 commit comments

Comments
 (0)