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 d33d6ff commit 9d66c8cCopy full SHA for 9d66c8c
dbos/_core.py
@@ -1073,7 +1073,8 @@ def invoke_step(*args: Any, **kwargs: Any) -> Any:
1073
1074
def on_exception(attempt: int, error: BaseException) -> float:
1075
dbos.logger.warning(
1076
- f"Step being automatically retried. (attempt {attempt + 1} of {attempts}). {traceback.format_exc()}"
+ f"Step being automatically retried (attempt {attempt + 1} of {attempts})",
1077
+ exc_info=error,
1078
)
1079
ctx = assert_current_dbos_context()
1080
span = ctx.get_current_span()
0 commit comments