Skip to content

Commit

Permalink
pass in boolvalue
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Dittamo <[email protected]>
  • Loading branch information
pvditt committed Nov 20, 2024
1 parent 57d5dfc commit 35d5e93
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion flytekit/models/core/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

from flyteidl.core import tasks_pb2
from flyteidl.core import workflow_pb2 as _core_workflow
from google.protobuf.wrappers_pb2 import BoolValue

from flytekit.models import common as _common
from flytekit.models import interface as _interface
Expand Down Expand Up @@ -412,7 +413,7 @@ def to_flyte_idl(self) -> _core_workflow.ArrayNode:
min_successes=self._min_successes,
min_success_ratio=self._min_success_ratio,
execution_mode=self._execution_mode,
is_original_sub_node_interface=self._is_original_sub_node_interface,
is_original_sub_node_interface=BoolValue(value=self._is_original_sub_node_interface),
)

@classmethod
Expand Down

0 comments on commit 35d5e93

Please sign in to comment.