From 9fb80424efe35b615d279c2a5c330e2166e32c71 Mon Sep 17 00:00:00 2001 From: Vincent Jacques Date: Sun, 10 May 2020 12:35:21 +0200 Subject: [PATCH] Fix typo in scheduling doc (#1245) --- docs/docs/scheduling.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/scheduling.md b/docs/docs/scheduling.md index 11fb7f1..7ecff03 100644 --- a/docs/docs/scheduling.md +++ b/docs/docs/scheduling.md @@ -53,7 +53,7 @@ from somewhere import say_hello queue = Queue(name='default', connection=Redis()) # Schedules job to be run in 10 seconds -job = queue.enqueue_at(timedelta(seconds=10), say_hello) +job = queue.enqueue_in(timedelta(seconds=10), say_hello) ``` Jobs that are scheduled for execution are not placed in the queue, but they are