summaryrefslogtreecommitdiff
path: root/src/apscheduler/schedulers
diff options
context:
space:
mode:
authorAlex Grönholm <alex.gronholm@nextday.fi>2022-08-01 02:23:31 +0300
committerAlex Grönholm <alex.gronholm@nextday.fi>2022-08-01 02:23:31 +0300
commit9ac5b5a80c722112e18242819b16f07441b0fdb1 (patch)
tree1892a29d2a432658d2d0ccb62f971d76421e38bd /src/apscheduler/schedulers
parent21f43a272488735c55e2447352ab6883d2976df4 (diff)
downloadapscheduler-9ac5b5a80c722112e18242819b16f07441b0fdb1.tar.gz
Fixed the docstring for the "coalese" option
Diffstat (limited to 'src/apscheduler/schedulers')
-rw-r--r--src/apscheduler/schedulers/async_.py5
-rw-r--r--src/apscheduler/schedulers/sync.py5
2 files changed, 4 insertions, 6 deletions
diff --git a/src/apscheduler/schedulers/async_.py b/src/apscheduler/schedulers/async_.py
index b6cc946..bc99567 100644
--- a/src/apscheduler/schedulers/async_.py
+++ b/src/apscheduler/schedulers/async_.py
@@ -116,9 +116,8 @@ class AsyncScheduler:
based ID will be assigned)
:param args: positional arguments to be passed to the task function
:param kwargs: keyword arguments to be passed to the task function
- :param coalesce: if ``True``, only one job will be created when the schedule is
- due even if multiple run times have passed since the last processing of the
- schedule
+ :param coalesce: determines what to do when processing the schedule if multiple
+ fire times have become due for this schedule since the last processing
:param misfire_grace_time: maximum number of seconds the scheduled job's actual
run time is allowed to be late, compared to the scheduled run time
:param max_jitter: maximum number of seconds to randomly add to the scheduled
diff --git a/src/apscheduler/schedulers/sync.py b/src/apscheduler/schedulers/sync.py
index 42a20dc..e64d43c 100644
--- a/src/apscheduler/schedulers/sync.py
+++ b/src/apscheduler/schedulers/sync.py
@@ -144,9 +144,8 @@ class Scheduler:
based ID will be assigned)
:param args: positional arguments to be passed to the task function
:param kwargs: keyword arguments to be passed to the task function
- :param coalesce: if ``True``, only one job will be created when the schedule is
- due even if multiple run times have passed since the last processing of the
- schedule
+ :param coalesce: determines what to do when processing the schedule if multiple
+ fire times have become due for this schedule since the last processing
:param misfire_grace_time: maximum number of seconds the scheduled job's actual
run time is allowed to be late, compared to the scheduled run time
:param max_jitter: maximum number of seconds to randomly add to the scheduled