Skip to content
This repository was archived by the owner on Feb 20, 2025. It is now read-only.

Commit e3a4387

Browse files
authored
Fix: Create Schedule Workflow Pydantic Key Error (hatchet-dev#301)
* fix arg key for scheduled_workflow_run_create * update version to 0.44.2
1 parent e41c82f commit e3a4387

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

hatchet_sdk/clients/rest_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ async def schedule_create(
284284
return await self.workflow_run_api.scheduled_workflow_run_create(
285285
tenant=self.tenant_id,
286286
workflow=name,
287-
create_schedule_workflow_trigger_request=ScheduleWorkflowRunRequest(
287+
schedule_workflow_run_request=ScheduleWorkflowRunRequest(
288288
triggerAt=trigger_at,
289289
input=input,
290290
additional_metadata=additional_metadata,

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "hatchet-sdk"
3-
version = "0.44.1"
3+
version = "0.44.2"
44
description = ""
55
authors = ["Alexander Belanger <[email protected]>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)