Hi! Is there a way to set all tasks to be interrup...
# flyte-support
s
Hi! Is there a way to set all tasks to be interruptible by default in the propeller configs?
a
not that I'm aware of. You could use partial but that's not platform-wide:
Copy code
from functools import partial
import flytekit as fl

task = partial(
    fl.task,
    interruptible=True,
)

@task
def function ...
s
Got it thanks for confirming David 🙏