Apply suggestions from code review

Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Willem Jiang
2026-04-26 11:12:42 +08:00
committed by GitHub
parent a55de566b9
commit d9f7f658be
5 changed files with 12 additions and 5 deletions
@@ -83,6 +83,8 @@ def get_thread_id(runtime: Any | None) -> str | None:
if thread_id:
return thread_id
except RuntimeError:
# Expected when not running inside a LangGraph runnable context (e.g., unit tests).
# In that case, thread_id cannot be resolved from thread-local config, so fall through.
pass
return None