File tree 2 files changed +1
-2
lines changed
src/test/java/com/uber/cadence
2 files changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,6 @@ public void testOnlyOptionsAndEmptyAnnotationsPresent() throws NoSuchMethodExcep
46
46
.setWorkflowIdReusePolicy (WorkflowIdReusePolicy .RejectDuplicate )
47
47
.setMemo (getTestMemo ())
48
48
.setSearchAttributes (getTestSearchAttributes ())
49
- .setDefaultContextPropagators (false )
50
49
.build ();
51
50
WorkflowMethod a =
52
51
WorkflowOptionsTest .class
Original file line number Diff line number Diff line change @@ -485,7 +485,7 @@ public void testNoDefaultOpenTelemetryContextPropagation() {
485
485
testEnvironment .start ();
486
486
WorkflowClient client = testEnvironment .newWorkflowClient ();
487
487
WorkflowOptions options =
488
- new WorkflowOptions .Builder ().setDefaultContextPropagators ( false ). build ();
488
+ new WorkflowOptions .Builder ().build ();
489
489
490
490
try (Scope scope = span .makeCurrent ()) {
491
491
TestWorkflow workflow = client .newWorkflowStub (TestWorkflow .class , options );
You can’t perform that action at this time.
0 commit comments