Skip to content

Commit 4705889

Browse files
update core and remove bridge config altering
1 parent 7d52b88 commit 4705889

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

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
@@ -456,9 +456,7 @@ test('Worker requests Eager Activity Dispatch if possible', async (t) => {
456456
workflowBundle: undefined,
457457
});
458458
const workflowWorkerConnection = await createNativeConnection();
459-
t.teardown(() => {
460-
workflowWorkerConnection.close();
461-
});
459+
t.teardown(() => workflowWorkerConnection.close());
462460
const workflowWorker = await createWorker({
463461
connection: workflowWorkerConnection,
464462
activities: {

0 commit comments

Comments
 (0)