Skip to content

Commit

Permalink
docs(README): missing comma in Cron Jobs usage
Browse files Browse the repository at this point in the history
  • Loading branch information
Lujeni committed May 16, 2024
1 parent 0521e7f commit 61c8d83
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 61c8d83

Please sign in to comment.