Hi at all, does anybody how to trigger a specific ...
# ask-community
l
Hi at all, does anybody how to trigger a specific task in a flow with a certain delay of some minutes? thanks :)
1
k
Hey @Laura Vaida, I don’t think we have such a mechanism. Would
time.sleep(time_in_seconds)
at the start of your task not work?
l
let's see...is there any documentation on that?
k
It’s just the native Python call so something like this:
Copy code
import time

@task
def abc(x):
    time.sleep(60)
    return x
l
ahh great, didn't know that! thanks! 🙂