File tree Expand file tree Collapse file tree 3 files changed +0
-5
lines changed
src/main/java/com/uber/cadence/internal Expand file tree Collapse file tree 3 files changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -194,7 +194,6 @@ static Decision decision(com.uber.cadence.Decision d) {
194
194
if (attr .getCronSchedule () != null ) {
195
195
builder .setCronSchedule (attr .getCronSchedule ());
196
196
}
197
- // cronOverlapPolicy not mapped in proto path yet
198
197
decision .setContinueAsNewWorkflowExecutionDecisionAttributes (builder );
199
198
}
200
199
break ;
@@ -227,7 +226,6 @@ static Decision decision(com.uber.cadence.Decision d) {
227
226
if (attr .getCronSchedule () != null ) {
228
227
builder .setCronSchedule (attr .getCronSchedule ());
229
228
}
230
- // cronOverlapPolicy not mapped in proto path yet
231
229
decision .setStartChildWorkflowExecutionDecisionAttributes (builder );
232
230
}
233
231
break ;
Original file line number Diff line number Diff line change @@ -545,7 +545,6 @@ public static StartWorkflowExecutionRequest startWorkflowExecutionRequest(
545
545
if (t .getCronSchedule () != null ) {
546
546
request .setCronSchedule (t .getCronSchedule ());
547
547
}
548
- // cronOverlapPolicy not mapped in proto path yet
549
548
if (t .getIdentity () != null ) {
550
549
request .setIdentity (t .getIdentity ());
551
550
}
Original file line number Diff line number Diff line change @@ -275,7 +275,6 @@ private StartWorkflowExecutionRequest getStartRequest(
275
275
if (!Strings .isNullOrEmpty (startParameters .getCronSchedule ())) {
276
276
request .setCronSchedule (startParameters .getCronSchedule ());
277
277
}
278
- // cronOverlapPolicy not supported in thrift request yet
279
278
request .setMemo (toMemoThrift (startParameters .getMemo ()));
280
279
request .setSearchAttributes (toSearchAttributesThrift (startParameters .getSearchAttributes ()));
281
280
request .setHeader (toHeaderThrift (startParameters .getContext ()));
@@ -505,7 +504,6 @@ private SignalWithStartWorkflowExecutionRequest createSignalWithStartRequest(
505
504
if (!Strings .isNullOrEmpty (startParameters .getCronSchedule ())) {
506
505
request .setCronSchedule (startParameters .getCronSchedule ());
507
506
}
508
- // cronOverlapPolicy not supported in thrift request yet
509
507
if (startParameters .getDelayStart () != null ) {
510
508
request .setDelayStartSeconds ((int ) startParameters .getDelayStart ().getSeconds ());
511
509
}
You can’t perform that action at this time.
0 commit comments