Skip to content

Commit 466a96b

Browse files
committed
Merge remote-tracking branch 'origin/experimental-priority-algorithm' into experimental-priority-algorithm
2 parents 53e62b6 + 16f3d1e commit 466a96b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cads_broker/dispatcher.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -574,7 +574,7 @@ def submit_requests(
574574
candidates: Iterable[db.SystemRequest],
575575
) -> None:
576576
"""Check the qos rules and submit the requests to the dask scheduler."""
577-
if "BROKER_PRIORITY_ALGORITHM" == "processing_time":
577+
if BROKER_PRIORITY_ALGORITHM == "processing_time":
578578
user_requests: dict[str, list[db.SystemRequest]] = {}
579579
for request in candidates:
580580
user_requests.setdefault(request.user_uid, []).append(request)

0 commit comments

Comments
 (0)