File tree Expand file tree Collapse file tree 2 files changed +2
-9
lines changed
main/java/io/temporal/client
test/java/io/temporal/internal/worker Expand file tree Collapse file tree 2 files changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -374,10 +374,8 @@ public Builder setDisableEagerExecution(boolean disableEagerExecution) {
374
374
}
375
375
376
376
/**
377
- * Time to wait before dispatching the first workflow task. If the workflow gets a signal before
378
- * the delay, a workflow task will be dispatched and the rest of the delay will be ignored. A
379
- * signal from signal with start will not trigger a workflow task. Cannot be set the same time
380
- * as a CronSchedule.
377
+ * Time to wait before dispatching the first workflow task. A signal from signal with start will
378
+ * not trigger a workflow task. Cannot be set the same time as a CronSchedule.
381
379
*/
382
380
public Builder setStartDelay (Duration startDelay ) {
383
381
this .startDelay = startDelay ;
Original file line number Diff line number Diff line change @@ -182,11 +182,6 @@ public void concurrentPollRequestLockTest() throws Exception {
182
182
});
183
183
184
184
assertTrue (worker .start ());
185
- // All slots should be available
186
- reporter .assertGauge (
187
- MetricsType .WORKER_TASK_SLOTS_AVAILABLE ,
188
- ImmutableMap .of ("worker_type" , "WorkflowWorker" ),
189
- 100.0 );
190
185
// Unblock the first poll
191
186
blockFirstPollLatch .countDown ();
192
187
// Wait until we have got all the polls
You can’t perform that action at this time.
0 commit comments