Skip to content

Commit 0b0366e

Browse files
authored
Fix NumberFormatException (#324)
logger.error call in DBOSExecutor.executeWorkflow was missing the workflow id argument. fixes #323
1 parent 0f5eb41 commit 0b0366e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

transact/src/main/java/dev/dbos/transact/execution/DBOSExecutor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1385,7 +1385,7 @@ private <T, E extends Exception> WorkflowHandle<T, E> executeWorkflow(
13851385
}
13861386
}
13871387

1388-
logger.error("executeWorkflow {}", actual);
1388+
logger.error("executeWorkflow {}", workflowId, actual);
13891389

13901390
if (actual instanceof InterruptedException
13911391
|| actual instanceof DBOSWorkflowCancelledException) {

0 commit comments

Comments
 (0)