File tree 1 file changed +6
-2
lines changed
temporal-sdk/src/main/java/io/temporal/internal/worker
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -355,8 +355,12 @@ public void handle(WorkflowTask task) throws Exception {
355
355
356
356
if (!locked ) {
357
357
throw new UnableToAcquireLockException (
358
- "Workflow lock for the run id hasn't been released by one of previous execution attempts, "
359
- + "consider increasing workflow task timeout." );
358
+ "Workflow lock for the run id hasn't been released by one of previous execution attempts. "
359
+ + "This likely means the workflow task timed out, and the Service attempted to "
360
+ + "retry the task on the same Worker while the timed out Task had not finished yet. "
361
+ + "We suggest investigating why the Workflow Task timed out. This could mean "
362
+ + "looking at Worker resource utilization at the time in which this exception was thrown or "
363
+ + "increasing workflow task timeout." );
360
364
}
361
365
}
362
366
You can’t perform that action at this time.
0 commit comments