We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74d9181 commit 28850feCopy full SHA for 28850fe
azure/durable_functions/models/TaskOrchestrationExecutor.py
@@ -291,7 +291,7 @@ def get_orchestrator_state_str(self) -> str:
291
actions=self.context._actions,
292
output=self.output,
293
replay_schema=self.context._replay_schema,
294
- error=None if self.exception is None else str(self.exception),
+ error=None if self.exception is None else (str(type(self.exception)) if not str(self.exception) else str(self.exception)),
295
custom_status=self.context.custom_status
296
)
297
0 commit comments