Skip to content

issues Search Results · language:Edge language:Python linked:pr language:JavaScript linked:pr language:JavaScript

Filter by

4.4M results  (311 ms)

4.4M results

Diagnosis _HANDLER_TLS is a thread-local that gates whether cache.set dispatches via broker RPC (false) or directly via SessionLocal (true, inside broker handlers). Correctly implemented. But: if any ...
audit-2026-06-12
audit-tier-3
threading

Diagnosis In _ensure_alive, if _demux_thread is None or not _demux_thread.is_alive(), a new thread is started unconditionally. If the old thread is still alive but .is_alive() returned False (race between ...
audit-2026-06-12
audit-tier-3
threading

Diagnosis threading.Thread(target=server.shutdown, daemon=True).start() inside _on_signal is fire-and-forget, no reference kept. Normally harmless. But if the signal fires twice (operator sends SIGTERM ...
audit-2026-06-12
audit-tier-3
threading

Diagnosis Every RPC dispatch calls get_active_pool() or get_active_writer(), both acquiring _lock — a regular threading.Lock. Under free-threading 10+ threads contend on the same lock for what are effectively ...
audit-2026-06-12
audit-tier-3
threading

Diagnosis except OSError, ConnectionError: is Python 2 syntax. Python 3 parses this as except OSError as ConnectionError: — catches only OSError, binds it to the name ConnectionError, shadowing the builtin. ...
audit-2026-06-12
audit-tier-3
threading

Diagnosis repo_cache: dict[str, Repo] = {} accumulates bare-assigned Repo objects. The finally: for repo in repo_cache.values(): repo.close() at the end is structurally correct for the single-threaded ...
audit-2026-06-12
audit-tier-2
threading

Bug When a fix recipe clears build gates and re-dispatches the build workstream, buildGatePaths() only clears stage-04. workstream .json and stage-04.json. It never clears pipeline/gates/stage-04a.json. ...

Diagnosis The inner try wraps dispatch(line) and sendall(payload) but there s no outer catch around the whole loop body. An uncaught exception from dispatch() propagates out of the while loop and kills ...
audit-2026-06-12
audit-tier-2
threading

Label Please label your issue with bug and any other relevant labels so that it can easily be easily categorized under LMCache Onboarding Describe the bug The following warnings keep appearing when running ...

Diagnosis _loop() inside _maybe_start_tracemalloc_snapshotter runs while True: ... time.sleep(interval). No stop signal; relies on daemon=True for process exit cleanup. If the process exits while mid-pickle.dump ...
audit-2026-06-12
audit-tier-2
threading
Issue origami icon

Learn how you can use GitHub Issues to plan and track your work.

Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub Issues
ProTip! Restrict your search to the title by using the in:title qualifier.
Issue origami icon

Learn how you can use GitHub Issues to plan and track your work.

Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub Issues
ProTip! Restrict your search to the title by using the in:title qualifier.