Hello all, is there a way to pass `timeout_seconds...
# prefect-community
h
Hello all, is there a way to pass
timeout_seconds
of the flow as parameter to customize it when trigger a deployment of that flow manually from UI?
Copy code
@flow(timeout_seconds = 15)
def log_flow(name: str):
    log_task(name)
As timeout_seconds is in the flow decorator, it won't be shown as a parameter of the flow run
k
You cannot pass the
timeout_seconds
parameter through the UI, but this is a good feature. Do you mind opening an issue for this as a feature request?