We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I attempted to execute a pyflyte run launch plan using a default input, but I encountered an error indicating that no input had been provided.
from flytekit import task, workflow, LaunchPlan, current_context @task() def t1(a: int) -> int: return a + 1 @workflow def wf1(b: int) -> int: return t1(t1(b)) wf1_lp = LaunchPlan.create( name="wf1_lp", workflow=wf1, default_inputs={"b": 1} )
For the provided code segment, the expected output is 3. However, I encountered an error stating that the argument b was not provided.
b
No response
The text was updated successfully, but these errors were encountered:
Thank you for opening your first issue here! 🛠
Sorry, something went wrong.
#take
KyleShao1016
Successfully merging a pull request may close this issue.
Describe the bug
I attempted to execute a pyflyte run launch plan using a default input, but I encountered an error indicating that no input had been provided.
Expected behavior
For the provided code segment, the expected output is 3. However, I encountered an error stating that the argument
b
was not provided.Additional context to reproduce
No response
Screenshots
Are you sure this issue hasn't been raised already?
Have you read the Code of Conduct?
The text was updated successfully, but these errors were encountered: