Unverified Commit 5480c6b1 authored by Deming's avatar Deming Committed by GitHub
Browse files

[Doc] Correct comment for _jobs dict in OffloadingConnectorWorker (#32556)

parent ba29ab44
...@@ -434,7 +434,7 @@ class OffloadingConnectorWorker: ...@@ -434,7 +434,7 @@ class OffloadingConnectorWorker:
self._job_counter = 0 self._job_counter = 0
# req_id -> (job_id, store) # job_id -> (req_id, store)
self._jobs: dict[int, tuple[ReqId, bool]] = {} self._jobs: dict[int, tuple[ReqId, bool]] = {}
# req_id -> active job IDs # req_id -> active job IDs
self._load_job: dict[ReqId, int] = {} self._load_job: dict[ReqId, int] = {}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment