Fix Scheduler Docstring (#1768)

This commit is contained in:
lowercase00 2023-01-27 04:22:57 -03:00 committed by GitHub
parent c5a7a6b670
commit d90c00501e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -336,7 +336,7 @@ class ScheduledJobRegistry(BaseRegistry):
return connection.zremrangebyscore(self.key, 0, score)
def get_jobs_to_schedule(self, timestamp: t.Optional[datetime] = None, chunk_size: int = 1000):
"""Remove jobs whose timestamp is in the past from registry."""
"""Get's a list of job IDs that should be scheduled."""
score = timestamp if timestamp is not None else current_timestamp()
return [as_text(job_id) for job_id in
self.connection.zrangebyscore(self.key, 0, score, start=0, num=chunk_size)]