Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] pyflyte run remote-task doesn't support boolean False parameters #6311

Open
2 tasks done
cventus opened this issue Mar 6, 2025 · 2 comments
Open
2 tasks done
Assignees
Labels
bug Something isn't working flytekit FlyteKit Python related issue

Comments

@cventus
Copy link

cventus commented Mar 6, 2025

Describe the bug

When a Task (or, Workflow, or Launch Plan) has a boolean input that's set to false you get an error from pyflyte run remote-task (and remote-workflow and remote-launchplan):

$ pyflyte run remote-task example.example_task --no-flag

TypeTransformerFailedError: Python value cannot be None, expected <class 'bool'>/Flyte Serialized object (LiteralType):
  simple: 4

I'm using flytekit 1.15.0

Expected behavior

It should be possible to set boolean parameters to False using pyflyte run remote-task. It should work the same as pyflyte run --remote.

Additional context to reproduce

example.py

from flytekit import task

@task()
def example_task(flag: bool) -> bool:
    return flag

Works

pyflyte run --remote example.py example_task --flag
pyflyte run --remote example.py example_task --no-flag
pyflyte run remote-task example.example_task --flag

Fails

pyflyte run remote-task example.example_task --no-flag

Screenshots

No response

Are you sure this issue hasn't been raised already?

  • Yes

Have you read the Code of Conduct?

  • Yes
@cventus cventus added bug Something isn't working untriaged This issues has not yet been looked at by the Maintainers labels Mar 6, 2025
Copy link

welcome bot commented Mar 6, 2025

Thank you for opening your first issue here! 🛠

@taieeuu
Copy link
Contributor

taieeuu commented Mar 6, 2025

#take

@eapolinario eapolinario added flytekit FlyteKit Python related issue and removed untriaged This issues has not yet been looked at by the Maintainers labels Mar 6, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working flytekit FlyteKit Python related issue
Projects
Status: Backlog
Development

No branches or pull requests

3 participants