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
with_overrides will unset a timeout if timeout is not specified in the with_overrides call.
https://github.com/flyteorg/flytekit/blob/4e93e36843b8f13f06eb088e1a46232ad1fb225d/flytekit/core/node.py#L178
with_overrides should only override specified params
@task( cache=True, cache_version="v1.0", timeout=timedelta(seconds=20), ) def basic_cache(num: str) -> str: return f"Hi: {num[0]} ugh-1" @workflow() def task_metadata_wf() -> str: return basic_cache(num="1").with_overrides(cache_version="v1.1")
No response
The text was updated successfully, but these errors were encountered:
pvditt
No branches or pull requests
Describe the bug
with_overrides will unset a timeout if timeout is not specified in the with_overrides call.
https://github.com/flyteorg/flytekit/blob/4e93e36843b8f13f06eb088e1a46232ad1fb225d/flytekit/core/node.py#L178
Expected behavior
with_overrides should only override specified params
Additional context to reproduce
Screenshots
No response
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: