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 e5f0a8c commit c843938Copy full SHA for c843938
lib/galaxy/model/__init__.py
@@ -2630,7 +2630,7 @@ class PostJobAction(Base, RepresentById):
2630
workflow_step_id: Mapped[Optional[int]] = mapped_column(ForeignKey("workflow_step.id"), index=True)
2631
action_type: Mapped[str] = mapped_column(String(255))
2632
output_name: Mapped[Optional[str]] = mapped_column(String(255))
2633
- _action_arguments: Mapped[Optional[bytes]] = mapped_column(MutableJSONType)
+ _action_arguments: Mapped[Optional[Dict[str, Any]]] = mapped_column("action_arguments", MutableJSONType)
2634
workflow_step: Mapped[Optional["WorkflowStep"]] = relationship(
2635
back_populates="post_job_actions",
2636
primaryjoin=(lambda: WorkflowStep.id == PostJobAction.workflow_step_id),
0 commit comments