Skip to content

Commit 9799bd0

Browse files
Add missing apostrophe to WorkflowException message (#2776)
Co-authored-by: tconley1428 <tconley1428@gmail.com>
1 parent 9b61d44 commit 9799bd0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

temporal-sdk/src/main/java/io/temporal/client/WorkflowException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ private static String getMessage(WorkflowExecution execution, String workflowTyp
3939
+ execution.getWorkflowId()
4040
+ "', runId='"
4141
+ execution.getRunId()
42-
+ (workflowType == null ? "" : "', workflowType='" + workflowType + '\'');
42+
+ (workflowType == null ? "'" : "', workflowType='" + workflowType + '\'');
4343
}
4444
}

0 commit comments

Comments
 (0)