We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 632c68b commit fc07acbCopy full SHA for fc07acb
grafoleancollector/collector.py
@@ -347,7 +347,7 @@ def execute(self):
347
# initialize APScheduler:
348
job_defaults = {
349
'coalesce': True, # if multiple jobs "misfire", re-run only one instance of a missed job
350
- 'max_instances': 1,
+ 'max_instances': 100, # temporarily set to high value until we figure out how to better deal with this
351
}
352
self.scheduler = BackgroundScheduler(job_defaults=job_defaults, timezone=utc)
353
self.scheduler.add_executor(IntervalsAwareProcessPoolExecutor(10), 'iaexecutor')
0 commit comments