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
TimedOut
Using the following sample flow to produce a TimedOut task and flow, the flow run receives a duration and end time but the task run does not.
from prefect import flow, task import requests @task(timeout_seconds=5) def timeout_task(): requests.get("http://httpbin.org/delay/10") @flow def timeout_flow(): timeout_task() if __name__ == "__main__": timeout_flow()
Version: 3.1.0 API version: 0.8.4 Python version: 3.12.4 Git commit: a83ba39b Built: Thu, Oct 31, 2024 12:43 PM OS/Arch: darwin/arm64 Profile: default Server type: cloud Pydantic version: 2.9.1
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug summary
Using the following sample flow to produce a
TimedOut
task and flow, the flow run receives a duration and end time but the task run does not.Version info
Additional context
No response
The text was updated successfully, but these errors were encountered: