docs: cache_ttl has no effect on a taskFlow target

This commit is contained in:
Ruben Fiszel
2026-09-16 00:18:24 +02:00
parent 4585410254
commit ae496dd3bd
10 changed files with 40 additions and 25 deletions
+3 -2
View File
@@ -3331,8 +3331,9 @@ def task(
instead of running it again. A task is keyed on its step key (its name and
call order) and the workflow's input, not on the arguments it is called
with, so cache one only when whether it runs, and what it receives, follow
from the workflow's input alone. A ``task_script`` or ``task_flow`` target
is keyed on the arguments it is called with.
from the workflow's input alone. A ``task_script`` target is keyed on the
arguments it is called with. It has no effect on a ``task_flow`` target,
which keeps its flow's own cache policy.
Usage::