Skip to content

Commit 4c889d6

Browse files
authored
sort input bound (#3292)
Signed-off-by: Kevin Su <[email protected]>
1 parent 6583b3b commit 4c889d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flytekit/models/core/workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ def to_flyte_idl(self) -> _core_workflow.ArrayNode:
423423
execution_mode=self._execution_mode,
424424
is_original_sub_node_interface=BoolValue(value=self._is_original_sub_node_interface),
425425
data_mode=self._data_mode,
426-
bound_inputs=self._bound_inputs,
426+
bound_inputs=sorted(self._bound_inputs),
427427
)
428428

429429
@classmethod

0 commit comments

Comments
 (0)