Skip to content

Commit

Permalink
release: a2
Browse files Browse the repository at this point in the history
  • Loading branch information
grutt committed Jul 25, 2024
1 parent b96add4 commit b859458
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion hatchet_sdk/clients/dispatcher/action_listener.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@
WorkerUnsubscribeRequest,
)
from hatchet_sdk.contracts.dispatcher_pb2_grpc import DispatcherStub
from hatchet_sdk.logger import logger
from hatchet_sdk.utils.backoff import exp_backoff_sleep

from ...loader import ClientConfig
from hatchet_sdk.logger import logger
from ...metadata import get_metadata
from ..events import proto_timestamp_now

Expand Down
4 changes: 1 addition & 3 deletions hatchet_sdk/worker/runner/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,9 +153,7 @@ def __init__(
def run(self, action: Action):
match action.action_type:
case ActionType.START_STEP_RUN:
logger.info(
f"run: start step: {action.action_id}/{action.step_run_id}"
)
logger.info(f"run: start step: {action.action_id}/{action.step_run_id}")
asyncio.create_task(self.handle_start_step_run(action))
case ActionType.CANCEL_STEP_RUN:
logger.info(
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "hatchet-sdk"
version = "0.31.6-a1"
version = "0.31.6-a2"
description = ""
authors = ["Alexander Belanger <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit b859458

Please sign in to comment.