We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd0db40 commit 2bfd0acCopy full SHA for 2bfd0ac
openeo/extra/job_management/__init__.py
@@ -566,6 +566,7 @@ def _job_update_loop(
566
not_started = job_db.get_by_status(statuses=["not_started"], max=200).copy()
567
if len(not_started) > 0:
568
# Check number of jobs running at each backend
569
+ # TODO: should "created" be included in here? Calling this "running" is quite misleading then.
570
running = job_db.get_by_status(statuses=["created", "queued", "queued_for_start", "running"])
571
stats["job_db get_by_status"] += 1
572
per_backend = running.groupby("backend_name").size().to_dict()
0 commit comments