mirror of https://github.com/rq/rq.git
fix: typo on readme file - enqueue_in() (#1534)
This commit is contained in:
parent
9737ffa95f
commit
5dab16d9e9
|
@ -59,7 +59,7 @@ Scheduling jobs are also similarly easy:
|
||||||
|
|
||||||
```python
|
```python
|
||||||
# Schedule job to run at 9:15, October 10th
|
# Schedule job to run at 9:15, October 10th
|
||||||
job = queue.enqueue_at(datetime(2019, 10, 8, 9, 15), say_hello)
|
job = queue.enqueue_at(datetime(2019, 10, 10, 9, 15), say_hello)
|
||||||
|
|
||||||
# Schedule job to run in 10 seconds
|
# Schedule job to run in 10 seconds
|
||||||
job = queue.enqueue_in(timedelta(seconds=10), say_hello)
|
job = queue.enqueue_in(timedelta(seconds=10), say_hello)
|
||||||
|
|
Loading…
Reference in New Issue