From d537ec2b28d2be7849dda464f2700d72d0ab9ad0 Mon Sep 17 00:00:00 2001 From: gabriel ruttner Date: Wed, 12 Jun 2024 15:56:07 -0600 Subject: [PATCH] dont swallow error --- hatchet_sdk/worker.py | 10 +++++----- pyproject.toml | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/hatchet_sdk/worker.py b/hatchet_sdk/worker.py index 2228758e..acfad52a 100644 --- a/hatchet_sdk/worker.py +++ b/hatchet_sdk/worker.py @@ -293,11 +293,11 @@ async def async_wrapped_action_func(context): # Send the action event to the dispatcher self.dispatcher_client.send_group_key_action_event(event) - try: - await task - except Exception as e: - # do nothing, this should be caught in the callback - pass + # try: + await task + # except Exception as e: + # # do nothing, this should be caught in the callback + # pass def force_kill_thread(self, thread): """Terminate a python threading.Thread.""" diff --git a/pyproject.toml b/pyproject.toml index e43d3733..8f4fb4bd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "hatchet-sdk" -version = "0.26.4-b0" +version = "0.26.4-b1" description = "" authors = ["Alexander Belanger "] readme = "README.md"