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 b6e084d commit 63c21feCopy full SHA for 63c21fe
temporalio/worker/_nexus.py
@@ -225,10 +225,11 @@ async def _handle_start_operation_task(
225
start_response = await self._start_operation(start_request, headers)
226
except BaseException as err:
227
logger.warning("Failed to execute Nexus start operation method")
228
- handler_err = _exception_to_handler_error(err)
229
completion = temporalio.bridge.proto.nexus.NexusTaskCompletion(
230
task_token=task_token,
231
- error=await self._handler_error_to_proto(handler_err),
+ error=await self._handler_error_to_proto(
+ _exception_to_handler_error(err)
232
+ ),
233
)
234
if isinstance(err, concurrent.futures.BrokenExecutor):
235
self._fail_worker_exception_queue.put_nowait(err)
0 commit comments