Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ async def run(self) -> AsyncIterator[TriggerEvent]:
yield TriggerEvent(
HITLTriggerEventSuccessPayload(
chosen_options=resp.chosen_options,
params_input=resp.params_input,
params_input=resp.params_input or {},
Comment thread
amoghrajesh marked this conversation as resolved.
timedout=False,
)
)
Expand Down
2 changes: 1 addition & 1 deletion task-sdk/src/airflow/sdk/execution_time/hitl.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
)

if TYPE_CHECKING:
from airflow.api_fastapi.execution_api.datamodels.hitl import HITLDetailResponse
from airflow.sdk.api.datamodels._generated import HITLDetailResponse


def upsert_hitl_detail(
Expand Down
Loading