From 61c8d839559c7be1b838cda8f004a687fb71570b Mon Sep 17 00:00:00 2001 From: THEBAULT Julien Date: Thu, 16 May 2024 17:12:17 +0200 Subject: [PATCH] docs(README): missing comma in Cron Jobs usage --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 49a8f21..3ba6f05 100644 --- a/README.rst +++ b/README.rst @@ -135,8 +135,8 @@ This is how you do it args=[arg1, arg2], # Arguments passed into function when executed kwargs={'foo': 'bar'}, # Keyword arguments passed into function when executed repeat=10, # Repeat this number of times (None means repeat forever) - result_ttl=300 # Specify how long (in seconds) successful jobs and their results are kept. Defaults to -1 (forever) - ttl=200 # Specifies the maximum queued time (in seconds) before it's discarded. Defaults to None (infinite TTL). + result_ttl=300, # Specify how long (in seconds) successful jobs and their results are kept. Defaults to -1 (forever) + ttl=200, # Specifies the maximum queued time (in seconds) before it's discarded. Defaults to None (infinite TTL). queue_name=queue_name, # In which queue the job should be put in meta={'foo': 'bar'}, # Arbitrary pickleable data on the job itself use_local_timezone=False # Interpret hours in the local timezone