Skip to content

Commit 15f08a5

Browse files
chris-olszewskiyuandrew
authored andcommitted
remove public config setting
1 parent ab66408 commit 15f08a5

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,6 @@ test('Worker requests Eager Activity Dispatch if possible', async (t) => {
462462
activities: {
463463
testActivity: () => 'workflow-and-activity-worker',
464464
},
465-
skipClientWorkerSetCheck: true,
466465
});
467466
const handle = await startWorkflow(executeEagerActivity);
468467
await activityWorker.runUntil(workflowWorker.runUntil(handle.result()));
@@ -502,7 +501,6 @@ test("Worker doesn't request Eager Activity Dispatch if no activities are regist
502501
const workflowWorker = await createWorker({
503502
connection: workflowWorkerConnection,
504503
activities: {},
505-
skipClientWorkerSetCheck: true,
506504
});
507505
const handle = await startWorkflow(dontExecuteEagerActivity);
508506
const result = await activityWorker.runUntil(workflowWorker.runUntil(handle.result()));

packages/test/src/test-sinks.ts

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,6 @@ if (RUN_INTEGRATION_TESTS) {
261261
sinks,
262262
maxCachedWorkflows: 0,
263263
maxConcurrentWorkflowTaskExecutions: 2,
264-
skipClientWorkerSetCheck: true,
265264
});
266265
const client = new WorkflowClient();
267266
await worker.runUntil(client.execute(workflows.logSinkTester, { taskQueue, workflowId: uuid4() }));
@@ -308,7 +307,6 @@ if (RUN_INTEGRATION_TESTS) {
308307
...defaultOptions,
309308
taskQueue,
310309
sinks,
311-
skipClientWorkerSetCheck: true,
312310
});
313311
const workflowId = uuid4();
314312
await worker.runUntil(client.execute(workflows.logSinkTester, { taskQueue, workflowId }));
@@ -322,7 +320,6 @@ if (RUN_INTEGRATION_TESTS) {
322320
{
323321
...defaultOptions,
324322
sinks,
325-
skipClientWorkerSetCheck: true,
326323
},
327324
history,
328325
workflowId
@@ -354,7 +351,6 @@ if (RUN_INTEGRATION_TESTS) {
354351
...defaultOptions,
355352
taskQueue,
356353
sinks,
357-
skipClientWorkerSetCheck: true,
358354
});
359355
const client = new WorkflowClient();
360356
const workflowId = uuid4();
@@ -371,7 +367,6 @@ if (RUN_INTEGRATION_TESTS) {
371367
{
372368
...defaultOptions,
373369
sinks,
374-
skipClientWorkerSetCheck: true,
375370
},
376371
history,
377372
workflowId
@@ -416,7 +411,6 @@ if (RUN_INTEGRATION_TESTS) {
416411
...defaultOptions,
417412
taskQueue,
418413
sinks,
419-
skipClientWorkerSetCheck: true,
420414
});
421415
await worker.runUntil(
422416
client.execute(workflows.upsertAndReadSearchAttributes, {

0 commit comments

Comments
 (0)