Skip to content

Commit

Permalink
doc: Clarify UnableToAcquireLockException (#2359)
Browse files Browse the repository at this point in the history
GitHub Issue #2359
  • Loading branch information
GSmithApps committed Jan 7, 2025
1 parent 9a8894a commit 06855df
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -355,8 +355,12 @@ public void handle(WorkflowTask task) throws Exception {

if (!locked) {
throw new UnableToAcquireLockException(
"Workflow lock for the run id hasn't been released by one of previous execution attempts, "
+ "consider increasing workflow task timeout.");
"Workflow lock for the run id hasn't been released by one of previous execution attempts. "
+ "This likely means the workflow task timed out, and the Service attempted to "
+ "retry the task on the same Worker while the timed out Task had not finished yet. "
+ "We suggest investigating why the Workflow Task timed out. This could mean "
+ "looking at Worker resource utilization at the time in which this exception was thrown or "
+ "increasing workflow task timeout.");
}
}

Expand Down

0 comments on commit 06855df

Please sign in to comment.