langchain - ✅(Solved) Fix Bug: @lru_cache-ed async httpx client causes APIConnectionError across event loops [7 pull requests, 9 comments, 8 participants]
ON THIS PAGE
Recommended Tools
×6Utilities matched from this issue’s tags and category — try them while you read without losing context.
GitHub issue graph ai analysis
Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.
The report is written in English Markdown for sharing and archival.
Helpful · Quick feedback
Error Message
import asyncio import threading from concurrent.futures import ThreadPoolExecutor, as_completed from langchain_openai import ChatOpenAI
llm = ChatOpenAI(model="gpt-4o-mini", temperature=0)
errors = [] successes = [] lock = threading.Lock()
def worker(thread_id: int): """Each thread runs asyncio.run() which creates a fresh event loop.""" for cycle in range(5): async def call(): return await llm.ainvoke(f"Reply with only: t{thread_id}c{cycle}")
try:
result = asyncio.run(call())
with lock:
successes.append((thread_id, cycle))
except Exception as e:
with lock:
errors.append((thread_id, cycle, e))
print(f"Thread {thread_id} cycle {cycle}: {type(e).__name__}: {e}")with ThreadPoolExecutor(max_workers=8) as pool: futures = [pool.submit(worker, i) for i in range(8)] for f in as_completed(futures): f.result()
print(f"\nTotal: {len(successes) + len(errors)}, OK: {len(successes)}, FAIL: {len(errors)}")
Root Cause
# langchain_openai/chat_models/_client_utils.py
@lru_cache # ← process-global, not event-loop-aware
def _cached_async_httpx_client(base_url, timeout):
return _build_async_httpx_client(base_url, timeout)
def _get_default_async_httpx_client(base_url, timeout):
try:
hash(timeout)
except TypeError:
return _build_async_httpx_client(base_url, timeout)
else:
return _cached_async_httpx_client(base_url, timeout) # ← shared across loopsThe cache key is (base_url, timeout) but should also include the event loop identity to prevent cross-loop sharing. The same pattern exists in langchain-anthropic.
Fix Action
Workaround
Pass an explicit http_async_client to bypass the cache entirely:
import httpx
from langchain_openai import ChatOpenAI
llm = ChatOpenAI(
model="gpt-4o-mini",
http_async_client=httpx.AsyncClient(),
http_client=httpx.Client(),
)Or implement a loop-isolated cache:
import asyncio, httpx
_async_client_cache = {}
def get_loop_isolated_async_client(**kwargs):
loop_id = id(asyncio.get_running_loop())
if loop_id not in _async_client_cache:
_async_client_cache[loop_id] = httpx.AsyncClient(**kwargs)
return _async_client_cache[loop_id]PR fix notes
PR #1: fix(langchain-openai): use per-event-loop cache for async httpx client to prevent cross-loop errors
- Repository: saiprasanth-git/langchain
- Author: saiprasanth-git
- State: open | merged: False
- Link: https://github.com/saiprasanth-git/langchain/pull/1
Description (problem / solution / changelog)
Summary
Fixes #35783
The _cached_async_httpx_client function in _client_utils.py was decorated with @lru_cache, making it process-global and shared across all event loops. This caused RuntimeError: Event loop is closed errors when ainvoke() is called from multiple threads (each with their own asyncio.run() event loop), sequential asyncio.run() calls, or frameworks like Celery that spin up multiple event loops.
Root Cause
httpx.AsyncClient connections are bound to the event loop they were created on. When a thread's asyncio.run() call completes, it closes the event loop. The next call from a different event loop would get the same cached AsyncClient, which tries to reuse or close connections tied to the now-dead loop, causing the error.
Fix
Replaced the process-global @lru_cache on _cached_async_httpx_client with a WeakValueDictionary that caches clients per event loop using the loop's id() as part of the key. This means:
- Each event loop gets its own
AsyncClientinstance — no more cross-loop sharing WeakValueDictionaryautomatically cleans up entries when a client is garbage collected, preventing memory leaks- Sync clients (
_cached_sync_httpx_client) are unaffected since they don't have this problem
Testing
The reproduction script from the issue (multi-threaded test with 8 threads × 5 cycles each) should now complete without any APIConnectionError failures.
Changed files
libs/partners/openai/langchain_openai/chat_models/_client_utils.py(modified, +60/-9)
PR #35794: fix(langchain-openai): use per-event-loop cache for async httpx client to prevent cross-loop errors
- Repository: langchain-ai/langchain
- Author: saiprasanth-git
- State: closed | merged: False
- Link: https://github.com/langchain-ai/langchain/pull/35794
Description (problem / solution / changelog)
Summary
Fixes #35783
The _cached_async_httpx_client function in _client_utils.py was decorated with @lru_cache, making it process-global and shared across all event loops. This caused RuntimeError: Event loop is closed errors when ainvoke() is called from multiple threads (each with their own asyncio.run() event loop), sequential asyncio.run() calls, or frameworks like Celery that spin up multiple event loops.
Root Cause
httpx.AsyncClient connections are bound to the event loop they were created on. When a thread's asyncio.run() call completes, it closes the event loop. The next call from a different event loop would get the same cached AsyncClient, which tries to reuse or close connections tied to the now-dead loop, causing the error.
Fix
Replaced the process-global @lru_cache on _cached_async_httpx_client with a WeakValueDictionary that caches clients per event loop using the loop's id() as part of the key. This means:
- Each event loop gets its own
AsyncClientinstance - no more cross-loop sharing WeakValueDictionaryautomatically cleans up entries when a client is garbage collected, preventing memory leaks- Sync clients (
_cached_sync_httpx_client) are unaffected since they don't have this problem
Testing
The reproduction script from the issue (multi-threaded test with 8 threads x 5 cycles each) should now complete without any APIConnectionError failures.
Changed files
libs/partners/openai/langchain_openai/chat_models/_client_utils.py(modified, +44/-7)
PR #35816: fix: include event loop ID in httpx AsyncClient cache key
- Repository: langchain-ai/langchain
- Author: gambletan
- State: closed | merged: False
- Link: https://github.com/langchain-ai/langchain/pull/35816
Description (problem / solution / changelog)
Summary
- Fixes #35783:
@lru_cacheon_cached_async_httpx_clientcaches by(base_url, timeout), but anhttpx.AsyncClientis bound to the event loop on which it was created. When multiple threads each callasyncio.run()(which creates a fresh event loop), the stale cached client is reused on a different loop, causingRuntimeError/ connection errors deep in httpcore/anyio. - Adds
id(asyncio.get_event_loop())as an additional cache key so each event loop gets its ownAsyncClientinstance, while still sharing within the same loop.
Changes
libs/partners/openai/langchain_openai/chat_models/_client_utils.py
_cached_async_httpx_client: added_event_loop_id: int = 0parameter (used only as a cache-key discriminator)._get_default_async_httpx_client: passesid(asyncio.get_event_loop())as the_event_loop_idkwarg when calling the cached function.
The sync client is unaffected since httpx.Client does not have event-loop affinity.
Test plan
- Run the reproduction script from #35783 (multi-threaded
asyncio.run()calls) and verify no cross-event-loop errors - Verify single-threaded async usage still benefits from client caching (same loop = same client)
- Existing unit tests pass
🤖 Generated with Claude Code
Changed files
libs/partners/openai/langchain_openai/chat_models/_client_utils.py(modified, +3/-2)
PR #35817: fix: make async httpx client cache event-loop-aware
- Repository: langchain-ai/langchain
- Author: gambletan
- State: closed | merged: False
- Link: https://github.com/langchain-ai/langchain/pull/35817
Description (problem / solution / changelog)
Summary
- Replace
@lru_cacheon_cached_async_httpx_clientwith a thread-safe dict keyed on(base_url, timeout, event_loop_id), preventing cross-event-loop reuse ofhttpx.AsyncClientinstances - Apply the same fix to both
langchain-openaiandlangchain-anthropicpartners - Evict stale cache entries when their associated event loop has closed
Problem
_cached_async_httpx_client() uses @lru_cache which is not event-loop-aware. When ainvoke() is called from multiple threads (each running asyncio.run() with its own event loop), the cached AsyncClient tries to reuse connections bound to a closed loop, causing:
RuntimeError: Event loop is closed
openai.APIConnectionError: Connection error.This affects multi-threaded async evaluation, sequential asyncio.run() calls, and framework scheduling (Celery, etc.).
Fix
Replace the process-global @lru_cache with a threading.Lock-protected dict that includes id(asyncio.get_running_loop()) in the cache key. Each event loop gets its own AsyncClient. Stale entries (where the client is closed) are evicted on each lookup.
The sync client cache (@lru_cache) is unchanged since sync clients are not bound to an event loop.
Files Changed
libs/partners/openai/langchain_openai/chat_models/_client_utils.pylibs/partners/anthropic/langchain_anthropic/_client_utils.py
Test Plan
- Verify the reproduction script from #35783 no longer raises
APIConnectionError - Verify single-threaded async usage still benefits from caching (same loop = same client)
- Verify unhashable timeout values still bypass the cache
Fixes #35783
Changed files
.devcontainer/README.md(removed, +0/-49).devcontainer/devcontainer.json(removed, +0/-58).devcontainer/docker-compose.yaml(removed, +0/-13).dockerignore(removed, +0/-34).editorconfig(removed, +0/-52).gitattributes(removed, +0/-3).github/CODEOWNERS(removed, +0/-3).github/ISSUE_TEMPLATE/bug-report.yml(removed, +0/-151).github/ISSUE_TEMPLATE/config.yml(removed, +0/-15).github/ISSUE_TEMPLATE/feature-request.yml(removed, +0/-151).github/ISSUE_TEMPLATE/privileged.yml(removed, +0/-49).github/ISSUE_TEMPLATE/task.yml(removed, +0/-120).github/PULL_REQUEST_TEMPLATE.md(removed, +0/-41).github/actions/uv_setup/action.yml(removed, +0/-39).github/dependabot.yml(removed, +0/-95).github/images/logo-dark.svg(removed, +0/-6).github/images/logo-light.svg(removed, +0/-6).github/pr-file-labeler.yml(removed, +0/-128).github/scripts/check_diff.py(removed, +0/-333).github/scripts/check_prerelease_dependencies.py(removed, +0/-36).github/scripts/get_min_versions.py(removed, +0/-199).github/tools/git-restore-mtime(removed, +0/-756).github/workflows/_compile_integration_test.yml(removed, +0/-65).github/workflows/_lint.yml(removed, +0/-81).github/workflows/_release.yml(removed, +0/-629).github/workflows/_test.yml(removed, +0/-85).github/workflows/_test_pydantic.yml(removed, +0/-73).github/workflows/auto-label-by-package.yml(removed, +0/-109).github/workflows/check_agents_sync.yml(removed, +0/-42).github/workflows/check_core_versions.yml(removed, +0/-67).github/workflows/check_diffs.yml(removed, +0/-267).github/workflows/integration_tests.yml(removed, +0/-271).github/workflows/pr_labeler_file.yml(removed, +0/-31).github/workflows/pr_labeler_title.yml(removed, +0/-47).github/workflows/pr_lint.yml(removed, +0/-116).github/workflows/refresh_model_profiles.yml(removed, +0/-93).github/workflows/tag-external-contributions.yml(removed, +0/-151).github/workflows/v03_api_doc_build.yml(removed, +0/-167).gitignore(removed, +0/-168).markdownlint.json(removed, +0/-14).mcp.json(removed, +0/-8).pre-commit-config.yaml(removed, +0/-125).vscode/extensions.json(removed, +0/-19).vscode/settings.json(removed, +0/-78)AGENTS.md(removed, +0/-253)CITATION.cff(removed, +0/-8)CLAUDE.md(removed, +0/-253)LICENSE(removed, +0/-21)README.md(removed, +0/-76)libs/Makefile(removed, +0/-20)libs/README.md(removed, +0/-35)libs/core/Makefile(removed, +0/-85)libs/core/README.md(removed, +0/-47)libs/core/extended_testing_deps.txt(removed, +0/-1)libs/core/langchain_core/__init__.py(removed, +0/-20)libs/core/langchain_core/_api/__init__.py(removed, +0/-87)libs/core/langchain_core/_api/beta_decorator.py(removed, +0/-253)libs/core/langchain_core/_api/deprecation.py(removed, +0/-603)libs/core/langchain_core/_api/internal.py(removed, +0/-23)libs/core/langchain_core/_api/path.py(removed, +0/-50)libs/core/langchain_core/_import_utils.py(removed, +0/-41)libs/core/langchain_core/_security/__init__.py(removed, +0/-0)libs/core/langchain_core/_security/_ssrf_protection.py(removed, +0/-361)libs/core/langchain_core/agents.py(removed, +0/-256)libs/core/langchain_core/caches.py(removed, +0/-272)libs/core/langchain_core/callbacks/__init__.py(removed, +0/-132)libs/core/langchain_core/callbacks/base.py(removed, +0/-1157)libs/core/langchain_core/callbacks/file.py(removed, +0/-267)libs/core/langchain_core/callbacks/manager.py(removed, +0/-2697)libs/core/langchain_core/callbacks/stdout.py(removed, +0/-123)libs/core/langchain_core/callbacks/streaming_stdout.py(removed, +0/-152)libs/core/langchain_core/callbacks/usage.py(removed, +0/-149)libs/core/langchain_core/chat_history.py(removed, +0/-246)libs/core/langchain_core/chat_loaders.py(removed, +0/-26)libs/core/langchain_core/chat_sessions.py(removed, +0/-19)libs/core/langchain_core/document_loaders/__init__.py(removed, +0/-39)libs/core/langchain_core/document_loaders/base.py(removed, +0/-155)libs/core/langchain_core/document_loaders/blob_loaders.py(removed, +0/-38)libs/core/langchain_core/document_loaders/langsmith.py(removed, +0/-143)libs/core/langchain_core/documents/__init__.py(removed, +0/-55)libs/core/langchain_core/documents/base.py(removed, +0/-347)libs/core/langchain_core/documents/compressor.py(removed, +0/-74)libs/core/langchain_core/documents/transformers.py(removed, +0/-79)libs/core/langchain_core/embeddings/__init__.py(removed, +0/-31)libs/core/langchain_core/embeddings/embeddings.py(removed, +0/-78)libs/core/langchain_core/embeddings/fake.py(removed, +0/-129)libs/core/langchain_core/env.py(removed, +0/-22)libs/core/langchain_core/example_selectors/__init__.py(removed, +0/-47)libs/core/langchain_core/example_selectors/base.py(removed, +0/-58)libs/core/langchain_core/example_selectors/length_based.py(removed, +0/-128)libs/core/langchain_core/example_selectors/semantic_similarity.py(removed, +0/-358)libs/core/langchain_core/exceptions.py(removed, +0/-111)libs/core/langchain_core/globals.py(removed, +0/-72)libs/core/langchain_core/indexing/__init__.py(removed, +0/-53)libs/core/langchain_core/indexing/api.py(removed, +0/-948)libs/core/langchain_core/indexing/base.py(removed, +0/-661)libs/core/langchain_core/indexing/in_memory.py(removed, +0/-104)libs/core/langchain_core/language_models/__init__.py(removed, +0/-116)libs/core/langchain_core/language_models/_utils.py(removed, +0/-327)libs/core/langchain_core/language_models/base.py(removed, +0/-373)
PR #35830: fix: use loop-aware cache for async httpx clients to prevent cross-event-loop crashes
- Repository: langchain-ai/langchain
- Author: Ker102
- State: closed | merged: False
- Link: https://github.com/langchain-ai/langchain/pull/35830
Description (problem / solution / changelog)
Description
Fixes #35783 — @lru_cache on _cached_async_httpx_client() causes APIConnectionError / RuntimeError("Event loop is closed") when the cached AsyncClient is reused across different event loops.
Root Cause
_cached_async_httpx_client() was decorated with @lru_cache keyed by (base_url, timeout), but ignored event loop identity. When a cached AsyncClient was created in one event loop and later accessed from a different loop (common in multi-threaded applications calling asyncio.run()), the underlying httpx transport was bound to the original (now-closed) loop.
The _AsyncHttpxClientWrapper.__del__ method attempts asyncio.get_running_loop().create_task(self.aclose()) which silently fails, leaving the client in a broken state for the new loop.
Fix
Replaced @lru_cache with a manual dict-based cache that includes id(asyncio.get_running_loop()) as part of the cache key:
key = (base_url, timeout, id(asyncio.get_running_loop()))The implementation also:
- Returns a fresh (uncached) client if no event loop is running
- Checks
client.is_closedbefore returning cached entries - Cleans up stale entries for dead loops on each cache miss
- Applied the same fix to
langchain-anthropicwhich had the identical bug
Files Changed
| File | Change |
|---|---|
libs/partners/openai/langchain_openai/chat_models/_client_utils.py | Loop-aware async client cache |
libs/partners/anthropic/langchain_anthropic/_client_utils.py | Same fix for Anthropic partner |
Reproduction
import asyncio
from langchain_openai import ChatOpenAI
llm = ChatOpenAI(model="gpt-4o-mini")
# First call creates + caches the AsyncClient for loop A
asyncio.run(llm.ainvoke("Hello"))
# Second call reuses the cached client, but loop A is now dead
asyncio.run(llm.ainvoke("Hello")) # APIConnectionError before fixTesting
The fix maintains backward compatibility — the sync @lru_cache is unchanged, and the async cache now correctly handles:
- Same loop reuse (cache hit, same as before)
- Cross-loop reuse (cache miss, creates new client)
- No running loop (returns fresh client, no caching)
Changed files
libs/partners/anthropic/langchain_anthropic/_client_utils.py(modified, +37/-3)libs/partners/openai/langchain_openai/chat_models/_client_utils.py(modified, +30/-4)
PR #35847: fix(openai): use loop-aware proxy to prevent cross-loop APIConnectionError (fixes #35783)
- Repository: langchain-ai/langchain
- Author: shivamtiwari3
- State: closed | merged: False
- Link: https://github.com/langchain-ai/langchain/pull/35847
Description (problem / solution / changelog)
Summary
Fixes #35783.
_get_default_async_httpx_client returned a process-global @lru_cache'd httpx.AsyncClient. ChatOpenAI stores this client at __init__ time. When a second asyncio.run() call uses the same ChatOpenAI instance (or two instances with the same params), requests go through a client whose connection pool is bound to the now-closed first loop, raising APIConnectionError.
Root Cause
_cached_async_httpx_client used @lru_cache, returning a single _AsyncHttpxClientWrapper for a given (base_url, timeout). httpx.AsyncClient connection pools use asyncio.Lock primitives bound to the event loop at creation time. Sharing one client across loops causes RuntimeError: Event loop is closed inside httpcore.
The bug is latent in ChatOpenAI.__init__ (line ~1085 of base.py): _get_default_async_httpx_client is called once and the result is passed to openai.AsyncOpenAI(http_client=...), which stores it permanently. Fixing the caching in _client_utils.py alone is insufficient — the stale client is embedded at init time.
Solution
Introduce _LoopAwareAsyncHttpxClientWrapper, a proxy that:
- Subclasses
openai.DefaultAsyncHttpxClient(compatible type for the openai SDK'shttp_clientparameter) - Is itself
@lru_cache'd — one proxy per(base_url, timeout), soChatOpenAI.__init__cost is unchanged (no performance regression) - Overrides
send()to delegate to a per-loop inner_AsyncHttpxClientWrapperstored in aweakref.WeakKeyDictionary[loop → client] - When a new event loop first calls
send(), it gets a fresh inner client (no dead-loop connections) - When a loop is GC'd,
WeakKeyDictionaryremoves the entry automatically
_get_default_async_httpx_client now returns this proxy (for hashable timeouts) instead of the raw cached client.
Testing
- Added
tests/unit_tests/chat_models/test_client_utils.pywith 11 tests:- Same loop reuses the same inner client
- Different loops get isolated inner clients
- Multi-threaded loops get isolated inner clients
- GC'd loop removes
WeakKeyDictionaryentry send()delegates to the inner clientaclose()closes only the current loop's inner client@lru_cacheon the outer proxy (same params → same proxy)- Different params → different proxies
- Hashable timeout returns
_LoopAwareAsyncHttpxClientWrapper - Unhashable timeout (
httpx.Timeout) falls back to plain wrapper - Same hashable params share the cached proxy instance
- All 11 tests pass; no existing tests broken
Checklist
- Fixes the root cause (stale loop-bound connection pool), not just the symptom
- New tests cover the exact scenario from the issue
- No performance regression: outer proxy is
@lru_cache'd,__init__cost unchanged - All existing unit tests unaffected
- No unrelated changes
- Code style matches project conventions
- Ruff lint passes
AI disclaimer: This PR was developed with the assistance of an AI coding assistant (Claude Code). All logic was reviewed and verified through unit tests.
Changed files
libs/partners/openai/langchain_openai/chat_models/_client_utils.py(modified, +59/-2)libs/partners/openai/tests/unit_tests/chat_models/test_client_utils.py(added, +121/-0)
PR #35888: fix(openai): use thread-local cache for async httpx client to prevent cross-loop reuse
- Repository: langchain-ai/langchain
- Author: NIK-TIGER-BILL
- State: closed | merged: False
- Link: https://github.com/langchain-ai/langchain/pull/35888
Description (problem / solution / changelog)
Summary
_get_default_async_httpx_client() used @lru_cache (process-global) to share a single AsyncClient across all ChatOpenAI instances with the same (base_url, timeout). This is unsafe in multi-threaded environments where each thread runs its own event loop via asyncio.run().
Failure scenario
Thread-A: asyncio.run(llm.ainvoke(...)) → loop-1 opens HTTP connections
asyncio.run() exits → loop-1 is CLOSED
Thread-B: asyncio.run(llm.ainvoke(...)) → gets the SAME cached client
→ tries to use connections bound to dead loop-1
→ RuntimeError: Event loop is closed
→ openai.APIConnectionError: Connection error.This affects:
- Multi-threaded async evaluation (each thread calls
asyncio.run()) - Sequential
asyncio.run()calls (each creates and then closes a fresh loop) - Celery async workers, pytest-asyncio test suites, etc.
Fix
Replace @lru_cache with threading.local() for the async client. Each thread gets its own AsyncClient that lives within the event loop created for that thread.
# Before (broken — process-global, not event-loop-aware)
@lru_cache
def _cached_async_httpx_client(base_url, timeout):
return _build_async_httpx_client(base_url, timeout)
# After (correct — one client per thread = one client per event loop)
_thread_local_async_clients = threading.local()
def _get_default_async_httpx_client(base_url, timeout):
...
if not hasattr(_thread_local_async_clients, "cache"):
_thread_local_async_clients.cache = {}
if cache_key not in _thread_local_async_clients.cache:
_thread_local_async_clients.cache[cache_key] = _build_async_httpx_client(...)
return _thread_local_async_clients.cache[cache_key]The sync client (_cached_sync_httpx_client) is not changed — sync httpx.Client is not bound to an event loop so it can safely remain process-global.
Repro
import asyncio, threading
from concurrent.futures import ThreadPoolExecutor, as_completed
from langchain_openai import ChatOpenAI
llm = ChatOpenAI(model="gpt-4o-mini")
errors = []
lock = threading.Lock()
def worker(thread_id):
for cycle in range(3):
try:
asyncio.run(llm.ainvoke(f"Reply: t{thread_id}c{cycle}"))
except Exception as e:
with lock:
errors.append(e)
with ThreadPoolExecutor(max_workers=4) as pool:
list(pool.map(worker, range(4)))
# Before fix: errors contains APIConnectionError (Event loop is closed)
# After fix: errors is empty
assert not errorsFixes #35783
Changed files
libs/partners/openai/langchain_openai/chat_models/_client_utils.py(modified, +35/-10)
Code Example
import asyncio
import threading
from concurrent.futures import ThreadPoolExecutor, as_completed
from langchain_openai import ChatOpenAI
llm = ChatOpenAI(model="gpt-4o-mini", temperature=0)
errors = []
successes = []
lock = threading.Lock()
def worker(thread_id: int):
"""Each thread runs asyncio.run() which creates a fresh event loop."""
for cycle in range(5):
async def call():
return await llm.ainvoke(f"Reply with only: t{thread_id}c{cycle}")
try:
result = asyncio.run(call())
with lock:
successes.append((thread_id, cycle))
except Exception as e:
with lock:
errors.append((thread_id, cycle, e))
print(f"Thread {thread_id} cycle {cycle}: {type(e).__name__}: {e}")
with ThreadPoolExecutor(max_workers=8) as pool:
futures = [pool.submit(worker, i) for i in range(8)]
for f in as_completed(futures):
f.result()
print(f"\nTotal: {len(successes) + len(errors)}, OK: {len(successes)}, FAIL: {len(errors)}")
---
Traceback (most recent call last):
File ".../openai/_base_client.py", line 1604, in request
response = await self._client.send(...)
File ".../httpx/_client.py", line 1629, in send
response = await self._send_handling_auth(...)
...
File ".../httpcore/_async/http11.py", line 135, in handle_async_request
await self._response_closed()
File ".../httpcore/_async/http11.py", line 250, in _response_closed
await self.aclose()
File ".../httpcore/_async/http11.py", line 258, in aclose
await self._network_stream.aclose()
File ".../httpcore/_backends/anyio.py", line 53, in aclose
await self._stream.aclose()
File ".../anyio/streams/tls.py", line 241, in aclose
await self.transport_stream.aclose()
File ".../anyio/_backends/_asyncio.py", line 1352, in aclose
self._transport.close()
File ".../asyncio/selector_events.py", line 875, in close
self._loop.call_soon(self._call_connection_lost, None)
File ".../asyncio/base_events.py", line 799, in call_soon
self._check_closed()
File ".../asyncio/base_events.py", line 545, in _check_closed
raise RuntimeError('Event loop is closed')
RuntimeError: Event loop is closed
The above exception was the direct cause of the following exception:
openai.APIConnectionError: Connection error.
---
# langchain_openai/chat_models/_client_utils.py
@lru_cache # ← process-global, not event-loop-aware
def _cached_async_httpx_client(base_url, timeout):
return _build_async_httpx_client(base_url, timeout)
def _get_default_async_httpx_client(base_url, timeout):
try:
hash(timeout)
except TypeError:
return _build_async_httpx_client(base_url, timeout)
else:
return _cached_async_httpx_client(base_url, timeout) # ← shared across loops
---
import httpx
from langchain_openai import ChatOpenAI
llm = ChatOpenAI(
model="gpt-4o-mini",
http_async_client=httpx.AsyncClient(),
http_client=httpx.Client(),
)
---
import asyncio, httpx
_async_client_cache = {}
def get_loop_isolated_async_client(**kwargs):
loop_id = id(asyncio.get_running_loop())
if loop_id not in _async_client_cache:
_async_client_cache[loop_id] = httpx.AsyncClient(**kwargs)
return _async_client_cache[loop_id]RAW_BUFFERClick to expand / collapse
Checked other resources
- This is a bug, not a usage question.
- I added a clear and descriptive title that summarizes this issue.
- I used the GitHub search to find a similar question and didn't find it.
- I am sure that this is a bug in LangChain rather than my code.
- The bug is not resolved by updating to the latest stable version of LangChain (or the specific integration package).
- This is not related to the langchain-community package.
- I posted a self-contained, minimal, reproducible example. A maintainer can copy it and run it AS IS.
Package (Required)
- langchain
- langchain-openai
- langchain-anthropic
- langchain-classic
- langchain-core
- langchain-model-profiles
- langchain-tests
- langchain-text-splitters
- langchain-chroma
- langchain-deepseek
- langchain-exa
- langchain-fireworks
- langchain-groq
- langchain-huggingface
- langchain-mistralai
- langchain-nomic
- langchain-ollama
- langchain-openrouter
- langchain-perplexity
- langchain-qdrant
- langchain-xai
- Other / not sure / general
Related Issues / PRs
No response
Reproduction Steps / Example Code (Python)
import asyncio
import threading
from concurrent.futures import ThreadPoolExecutor, as_completed
from langchain_openai import ChatOpenAI
llm = ChatOpenAI(model="gpt-4o-mini", temperature=0)
errors = []
successes = []
lock = threading.Lock()
def worker(thread_id: int):
"""Each thread runs asyncio.run() which creates a fresh event loop."""
for cycle in range(5):
async def call():
return await llm.ainvoke(f"Reply with only: t{thread_id}c{cycle}")
try:
result = asyncio.run(call())
with lock:
successes.append((thread_id, cycle))
except Exception as e:
with lock:
errors.append((thread_id, cycle, e))
print(f"Thread {thread_id} cycle {cycle}: {type(e).__name__}: {e}")
with ThreadPoolExecutor(max_workers=8) as pool:
futures = [pool.submit(worker, i) for i in range(8)]
for f in as_completed(futures):
f.result()
print(f"\nTotal: {len(successes) + len(errors)}, OK: {len(successes)}, FAIL: {len(errors)}")Error Message and Stack Trace (if applicable)
Traceback (most recent call last):
File ".../openai/_base_client.py", line 1604, in request
response = await self._client.send(...)
File ".../httpx/_client.py", line 1629, in send
response = await self._send_handling_auth(...)
...
File ".../httpcore/_async/http11.py", line 135, in handle_async_request
await self._response_closed()
File ".../httpcore/_async/http11.py", line 250, in _response_closed
await self.aclose()
File ".../httpcore/_async/http11.py", line 258, in aclose
await self._network_stream.aclose()
File ".../httpcore/_backends/anyio.py", line 53, in aclose
await self._stream.aclose()
File ".../anyio/streams/tls.py", line 241, in aclose
await self.transport_stream.aclose()
File ".../anyio/_backends/_asyncio.py", line 1352, in aclose
self._transport.close()
File ".../asyncio/selector_events.py", line 875, in close
self._loop.call_soon(self._call_connection_lost, None)
File ".../asyncio/base_events.py", line 799, in call_soon
self._check_closed()
File ".../asyncio/base_events.py", line 545, in _check_closed
raise RuntimeError('Event loop is closed')
RuntimeError: Event loop is closed
The above exception was the direct cause of the following exception:
openai.APIConnectionError: Connection error.Description
The problem
_get_default_async_httpx_client() in langchain_openai/chat_models/_client_utils.py uses @lru_cache to share a single httpx.AsyncClient across all ChatOpenAI instances with the same (base_url, timeout). This is unsafe when ainvoke() is called from multiple event loops — which happens in:
- Multi-threaded async evaluation (each thread runs
asyncio.run(), creating a new loop) - Sequential
asyncio.run()calls (each call creates and then closes a new loop) - Framework scheduling (e.g. Celery async workers, multi-process evaluation)
The cached AsyncClient opens HTTP connections that are bound to the event loop where the request was first made. When asyncio.run() finishes, that loop is closed. The next call from a different loop gets the same cached client, which tries to reuse (or close) connections from the dead loop, causing RuntimeError: Event loop is closed.
Root cause
# langchain_openai/chat_models/_client_utils.py
@lru_cache # ← process-global, not event-loop-aware
def _cached_async_httpx_client(base_url, timeout):
return _build_async_httpx_client(base_url, timeout)
def _get_default_async_httpx_client(base_url, timeout):
try:
hash(timeout)
except TypeError:
return _build_async_httpx_client(base_url, timeout)
else:
return _cached_async_httpx_client(base_url, timeout) # ← shared across loopsThe cache key is (base_url, timeout) but should also include the event loop identity to prevent cross-loop sharing. The same pattern exists in langchain-anthropic.
Workaround
Pass an explicit http_async_client to bypass the cache entirely:
import httpx
from langchain_openai import ChatOpenAI
llm = ChatOpenAI(
model="gpt-4o-mini",
http_async_client=httpx.AsyncClient(),
http_client=httpx.Client(),
)Or implement a loop-isolated cache:
import asyncio, httpx
_async_client_cache = {}
def get_loop_isolated_async_client(**kwargs):
loop_id = id(asyncio.get_running_loop())
if loop_id not in _async_client_cache:
_async_client_cache[loop_id] = httpx.AsyncClient(**kwargs)
return _async_client_cache[loop_id]System Info
OS: Darwin OS Version: Darwin Kernel Version 25.3.0 Python Version: 3.12.11
Package Information
langchain_core: 1.2.18 langchain_openai: 1.1.11 langsmith: 0.4.49 openai: 2.26.0 httpx: 0.28.1 httpcore: 1.0.9 anyio: 4.12.0
extent analysis
Problem Summary
The problem is a RuntimeError: Event loop is closed when using langchain_openai in a multi-threaded async evaluation environment.
Root Cause Analysis
The root cause is a shared cache of httpx.AsyncClient instances across all event loops, which leads to connections being bound to the wrong event loop when asyncio.run() finishes.
Fix Plan
To fix this issue, you can either:
1. Pass an explicit http_async_client to bypass the cache entirely
import httpx
from langchain_openai import ChatOpenAI
llm = ChatOpenAI(
model="gpt-4o-mini",
http_async_client=httpx.AsyncClient(),
http_client=httpx.Client(),
)2. Implement a loop-isolated cache
import asyncio, httpx
_async_client_cache = {}
def get_loop_isolated_async_client(**kwargs):
loop_id = id(asyncio.get_running_loop())
if loop_id not in _async_client_cache:
_async_client_cache[loop_id] = httpx.AsyncClient(**kwargs)
return _async_client_cache[loop_id]Verification
To verify that the fix worked, you can run the same reproduction steps as before and check that the RuntimeError: Event loop is closed exception is no longer raised.
Extra Tips
To prevent regressions, make sure to test your code in a multi-threaded async evaluation environment to ensure that the fix does not introduce any new issues. Additionally, consider opening a pull request to update the langchain_openai library to include the loop-isolated cache fix.
Vote matrix · Quick signals
Still need to ship something?
×6Another batch ranked right after the header list — different links, same matching logic.
TRENDING
- Feature Request: Configurable per-minute rate limiting (RPM) for models to prevent 429 errors
- Android: Hermes App + Termux install share ~/.hermes and cause silent permission loops
- hermes update emits unicode-animations ANSI demo in non-interactive logs
- hermes update downgrades aiohttp from 3.13.4 to 3.13.3
- npm install warns about deprecated @babel/plugin-proposal-private-methods
- DingTalk inbound media URLs are skipped as unreadable native image paths
- fix(dashboard): ChatPage clears header action buttons on ALL pages, not just Sessions
- [Bug]: check_web_api_key() hardcodes built-in backends — third-party web search plugins silently disabled
- Hermes Web UI 修复经验:GatewayManager 补丁、进程 D 状态、数据库升级问题
- Telegram gateway can silently drop turn after /stop with response=0 chars while internal work continues
- Bug Report: v0.14.0 上下文污染 — 历史回复碎片回注到新请求
- Bug: hermes skills search table truncates Identifier column — install fails with copied value
- [skills-index-watchdog] Skills index is stale or degraded (degraded)
- Discord approval embed not rendering on web/mobile — embed data present in API but invisible
- Idea: Discord voice-channel participation / opt-in auto-join mode
- [Feature]: Claude Code--ultrawork
- build-arm64 job deterministically fails on cold cache (Azure SAS token expires mid-build)
- [Enhancement] computer_use: action=type should fall back to key events for terminal emulators (Ghostty/Terminal.app/iTerm2)
- Feature Request: Session Recovery on Temporary Provider Outage
- [Bug]: Hermes dashboard not working on NixOS (container)
- [Feature]: Add option to ignore @all/@everyone mentions in Feishu group chats
- QQ Bot WebSocket 频繁断开:长时间工具执行阻塞 asyncio 事件循环导致心跳超时
- patch tool: new_string escape sequences (\t) get written literally
- Feature Request: i18n / 多语言支持(国际化)
- Bug: web_crawl schema lets models auto-guess "instructions" instead of asking the user via clarify
- feat: `!command` prefix for direct shell execution (like Claude Code)
- Expose currently-running cron jobs via /api/jobs (or new endpoint)
- [Bug]: Kanban parent-child handoff: scratch workspace GC destroys artifacts before child can read them
- [Bug, Windows] hermes gateway restart loses session context — planned_stop_marker not written before SIGTERM
- [Bug]: Codex→DeepSeek fallback sends assistant turns without reasoning_content → HTTP 400 (require-side cross-provider failover)
- [Bug]: Update got stuck half way, reboot it, then ModuleNotFoundError: No module named 'hermes_cli'
- Kanban dispatcher corrupt-board handling and multi-profile gateway ownership ambiguity
- Gateway can resend a short fallback message when the real final Telegram response was already delivered
- [BUG] Bedrock: Fix 'Invalid API Key format' for presigned URL tokens
- Secret redaction corrupts code syntax in tool output (write_file, execute_code, terminal)
- Unable to connect Ollama Cloud with Pro Subscription to Hermes
- feat: fuzzy substring matching for /skill autocomplete
- PRD: Autonomous market-impact prediction briefing system
- Kanban dashboard should support task/card deep links
- [Feature] Native Feishu CardKit Streaming: consolidate best-in-class implementations
- [Feature]: Inject mental model into context when using Hindsight
- Interactive CLI hides tool output despite display.tool_progress=all, and hermes chat -v does not restore it
- fix(api_server): _handle_responses drops text.format JSON schema — structured output constraints silently ignored
- state.db FTS corruption goes undetected — no integrity check, no repair path
- bug: fallback routing can select text-only models for image requests and hide the primary failure
- feat(kanban): persist worker session_id per run and pass --resume on respawn after unblock
- feat(kanban): support GitHub/OMO lifecycle bridge for Xiyou-style automation
- Expose update-safe TUI/composer hooks for voice transcript and composer events
- Hide or configure voice transcript status rows in editable dictation mode
- [Feature]: Per-Tool / Per-Toolset Approval Policies
- Context compression creates orphan sessions missing from state.db
- messaging platform
- feat: Add read-only / silent monitoring mode for WhatsApp adapter
- double-.hermes path mismatch, the HOME env var leak, and the fallback-notification UX problem
- Bug: Plattform-Bundle name `hermes-yuanbao` in `agent.disabled_toolsets` silently kills ALL tools in gateway path (Telegram + cron), CLI unaffected
- CLI /yolo (in-chat) does not bypass dangerous command approvals — env var freeze + missing enable_session_yolo call
- OpenAI Codex provider crashes with "'NoneType' object is not iterable" (HTTP None)
- DEEPSEEK_API_KEY blocked by env blocklist in gateway process — cron jobs fail with deepseek provider
- fix(feishu): Card action callback routing issues - invalid message_id and unrecognized /card command
- Discord plugin: profiles without explicit `discord:` block silently get `require_mention=true` + `auto_thread=true` (regression in cc8e5ec2a)
- [Bug]: DISCORD_ALLOWED_ROLES ignored by gateway _is_user_authorized — role-authorized users get 'Unauthorized user' rejection
- [Bug]: /new, /clear, and /reset commands freeze the terminal session
- openai-codex subscription backend returns HTTP 200 with response.output=None, causing Slack/cron failures
- RFC: Centralized Model/Provider Registry
- bug: openai-codex provider — TypeError: 'NoneType' object is not iterable on every request (gpt-5.5)
- [Feature]: Source-aware instruction gate — architectural mitigation for indirect prompt injection
- Named custom provider stale_timeout_seconds ignored because runtime provider is normalized to `custom`
- guard test (ignore)
- [Feature]: per-platform LLM request_overrides (extra_body / reasoning_effort / service_tier)
- One-shot smoke: add Flue-backed orchestration fixture
- Gateway should not treat stale Codex app-server progress as final response after post-tool silence
- `docker_run_as_host_user: true` breaks bundled skills: Hermes home is mounted into `/root/.hermes` but the container runs as a non-root user (`HOME=/home/pn`)
- [Bug]: gateway api_server streaming bypasses server-side tool-call loop when chat_template_kwargs.enable_thinking=false (model emits tool name as plain text)
- [Feature]: Pre-install python-telegram-bot in Umbrel Hermes Docker image
- YouTube Shorts filter not working in youtube-content skill
- v0.15.0 PyPI release breaks ALL platforms — plugin.yaml manifests missing from package
- RFC: On-demand tool/skill/MCP discovery — decouple schema registration from process lifecycle
- Pixshelf: local-first stock photo workflow command center
- [Bug]: baoyu infographic skill should not silently bypass image_generate
- Pixshelf v1.5: manual submission tracking for stock agencies
- `hermes config set` silently accepts unknown keys, writing them where the runtime never reads
- Honcho memory prefetch hang on fresh CLI subprocess in v0.15.0 (regression from #27190)
- [Bug] v0.15.0 Docker image: stage2-hook.sh, main-wrapper.sh missing; container_boot module removed
- Feature: Reduce cache-read token overhead for DeepSeek providers — configurable cache_ttl, skills snapshot trimming, memory compaction
- Windows: three bugs from daily use (plugin discovery, gateway exit code, Unicode decode
- holographic memory: HRR silently degrades to FTS5 when numpy is missing
- Make max_tokens configurable for aux vision calls
- Conversation compression desynchronizes session ID between agent context and gateway routing, causing silent message loss
- [Bug]: v0.15.0 Docker image:The TUI cannot be used in the dashboard.
- cron: skip_memory=True blocks fact_store/memory tools from all cron jobs
- TUI: Node.js OOM crash when agent uses browser tools repeatedly
- feat: model_profiles — per-model toolset and memory config
- Automatic background skill patching disrupts active sessions (severe impact on local models)
- ensure_hermes_home() creates root-owned dirs in profile subdirectories when kanban workers are dispatched
- Feature: opt-in webhook bypass for DISCORD_ALLOW_BOTS — allow operator-initiated probes without weakening bot-loop guard
- v0.15.0: Codex requests fail HTTP 400 when participant display_name contains non-ASCII (emoji breaks input[].name pattern)
- Architecture: State Persistence Precedence (Memory vs Skills vs Hooks)
- [Bug]: cronjob tool: create action always fails with "schedule is required for create" even when parameters are provided
- codex-oauth: 'NoneType' object is not iterable in _run_codex_stream (gpt-5.5) — every turn fails non-retryably
- Docs/Config: Plugin local scope enablement ambiguity
- [Bug]: CLI freezes after using /new command (WSL)
- Profile Codex auth can ignore global credential pool when local state is stale
- [workflow-engine] CRITICAL: variable substitution crashes on regex metachars in user input
- [workflow-engine] HIGH: loop and bash nodes leak subprocesses on timeout
- [workflow-engine] HIGH: README documents config env vars the engine never reads
- [workflow-engine] MEDIUM: workflow_run rate limit bypassable via concurrent calls (TOCTOU)
- [workflow-engine] chore: manifest gaps, side-effectful register(), dead code, unauth kanban dispatch
- [mcp_lazy] HIGH: synthetic mcp_server_<name> stub collides with a real MCP server named 'server'
- [mcp_lazy] HIGH: promote_server eager flag documented but never persisted
- [mcp_lazy] MEDIUM: _prev_mode dict leaks and goes stale; not cleared on session evict
- [mcp_lazy] MEDIUM: get_pool has unlocked check-then-set race on pool creation
- [mcp_lazy] MEDIUM: pre_tool_call gives no guidance for unpromoted server-stub calls
- [mcp_lazy] chore: undeclared pre_tool_call hook, nonexistent 'mcp_load_tools' name in docs, missing tests
- [a2a_fleet] CRITICAL: server never auto-starts — register() runs outside an event loop
- [a2a_fleet] CRITICAL: auth_required defaults to false on a cross-machine surface
- [a2a_fleet] HIGH: remove invented disable() hook — loader never calls it, port leaks on reload
- [a2a_fleet] HIGH: plugin.yaml missing kind / provides_tools / requires_env (token env undeclared)
- [a2a_fleet] MEDIUM: tighten wide-open CORS, anonymous /health peer leak, and peer-URL SSRF
- [a2a_fleet] MEDIUM: relocate tests to tests/plugins/ and cover sync-register + auth-default paths
- xai-oauth auxiliary client incorrectly uses Responses API (CodexAuxiliaryClient), causing 403 on compression/vision/web_extract
- [Bug]: Direct Copilot gpt-5.5 large resumes are killed by 12s Codex TTFB watchdog
- [Bug]: `hermes uninstall` does not work on Windows
- TUI: Thinking block leaks raw JSON and Σ character
- Hostinger VPS: migration Hermes Agent → Hermes WebUI impossible (tini + UID mismatch + sessions)
- /goal judge over-continues exploratory goals unless the assistant explicitly says the goal is complete
- /goal auto-continuation can be amplified by preflight compression/session split and resurrect stale task state
- Dashboard infinite reload loop in loopback mode — GET /api/auth/me returns 401 on every page load
- [Bug]: Provider/LLM switch leaves stale encrypted_content causing 400 errors on Telegram sessions
- [Bug]: Infinite reload loop / React state loop on Sessions tab (Firefox + Chrome) — repeated 401 on /api/auth/me (v0.15.0)
- show_reasoning should work independently of streaming in CLI mode
- Feature Request: Strip reasoning/<think> blocks from TTS preprocessing
- mcp add / mcp test raise NameError when mcp package not installed
- v0.14.0 dashboard breaks behind reverse proxies — two regressions
- Skills hub creates empty category directories when no skills installed
- [Bug]: Custom endpoint: ChatCompletions returns content, but Hermes treats response as empty (v0.14.0)
- fix: atomic_replace() fails with EXDEV when HERMES_HOME is a cross-filesystem symlink
- fix(gateway): Feishu session cancellation orphans session guard, permanently blocking messages
- Custom endpoint pricing can overestimate Crof qwen3.5-9b cost by 1,000,000x
- MCP OAuth callback: module-level port global causes port collisions and structural weaknesses vs upstream
- Bug: send_message tool bypasses validate_media_delivery_path security check
- Proposal: Add Mnemosyne to official memory provider documentation
- feat(swarm): support custom verifier/synthesizer body + skills
- Template conversion failed
- Error occurred in the operation of the agent node in the workflow.
- PubSub client overrides Sentinel client when REDIS_USE_SENTINEL is enabled
- Frontend description of the Retrieval node output does not match the actual output
- JSON type input var raise Intenal server error
- cannot extract elements from a scalar
- 负载均衡 为模型配置多组凭据,并自动调用,此功能无法选择
- add models is error
- panic: could not create filter
- Persist partially generated messages when /chat-messages/:task_id/stop is called
- MCP server connection fails with 403 — request never leaves Dify (SSRF proxy suspected)
- Support durable async execution backends for long-running workflow steps
- [Xiaomi MiMo] Credentials validation fails with 400 "Not supported model mimo-v2-flash" when using Token Plan endpoint (v0.0.7)
- After clicking preview on a parent-child segmented knowledge base, it shows 0 chunks
- Retrieval score differs between UI upload (.docx) and API upload (.txt) despite identical chunk content and embedding model
- gemini cli crash again
- Xbox gift card code damage
- Damage caused by the gemini cli crash
- ioctl(2) failed, EBADF (Bad File Descriptor)
- Feat: Support Bun as an alternative runtime/package manager for updates and extensions
- fatal error again!!!!
- ioctl error
- Critical Crash: ioctl(2) failed, EBADF in ShellExecutionService.resizePty
- ioctl(2) failed, EBADF
- v0.44.0 Regression: Critical crash with ioctl(2) failed, EBADF during PTY resize
- Crash on startup: ioctl(2) failed, EBADF in UnixTerminal.resize
- Crash: `ioctl(2) failed, EBADF` in `node-pty` during PTY resize on macOS
- Gemini CLI crashes with `ioctl(2) failed, EBADF` in `node-pty` during `resizePty`
- Remote Role
- ERROR ioctl(2) failed, EBADF /home/mich
- RangeError: Maximum call stack size exceeded
- EBADF Error during folder creationg broke session and terminal glitches
- MAIP / Gargoub Project - Mediterania - North Coast
- Gemini cli crash again in this morning
- ERROR ioctl(2) failed, EBADF
- Verified node install fails — Checksum verification failed (Cloud)
- The extended debugging key did not arrive during registration.
- CollaborationPane unmounts collaboration store on single-user instances, causing permanent "No network connection" state
- Workflow cannot be saved when the name contains "->" (Potentially malicious string)
- automation does not work and does not show an error
- Raj Ai Automation
- Default Data Loader: DOMMatrix is not defined error
- Feature: Per-node execution timestamp overlay on canvas during workflow run
- AI Agent + Vertex `gemini-3.5-flash`: 400 "missing thought_signature" on sequential multi-turn tool calls (post-#24982)
- PDF Loader in Pinecone Vector Store fails due to pdf-parse version conflict (v2 not supported)
- emailReadImap: add UID deduplication, batch size cap, and numeric uid enforcement
- Manual node execution fails with "Could not find a node" when autosave is disabled (N8N_WORKFLOWS_AUTOSAVE_DISABLED)
- Schedule Trigger stopped firing — workflow Published & active, manual executions succeed, no automated fires for 2+ hours
- [MCP SDK] create_workflow_from_code intermittently returns HTTP 500, often as a false negative (workflow persists anyway, causing duplicates on retry)
- Credential-load wedge: workflows using googleApi/jwtAuth credentials silently fail to execute after key rotation
- Google Sheets Trigger every minute is not working manual Execute is working sent email
- [BUG] Plugin marketplace MCP connector remains stuck "still connecting" when mcp-remote requires OAuth
- [redacted at user request]
- Opus 4.7 behavioral regression: loaded instruction-following discipline degraded in recent Claude Code/Cowork updates
- [BUG] Tailscale via Homebrew CLI + Mac App Store GUI, both Macs on macOS, Cowork blocked by VPN detector despite Tailscale being a mesh VPN with no traffic interception
- stopShellPty on tab switch kills active sessions (exit 143) — regression in May 27 build
- [BUG] Long URLs are broken into multiple lines and become unclickable in terminal output
- [BUG] claude rm/stop/reap SIGKILLs background session tree without SIGTERM grace, orphaning git index.lock and similar
- [BUG] Default git workflow in the system prompt was pushed without context or consent
- [MODEL] Inconsistent output quality / Ignoring instructions (overfitting and inappropriate repetition of Korean vocabulary)
- You've hit your weekly limit · resets May 31 at 5pm (Asia/Shanghai)
- Paid yearly subscription silently downgraded to Free with no user action
- [Regression v2.1.153] Plugin bash hooks fail with "echo: write error: Permission denied" on Windows (claude-mem, shell: "bash")
- [BUG] Connector toggles in conversation are not clickable — must click text label instead
- [remote-control] Input from mobile app/browser not reaching host session — output works fine
- Model fails to read/reference CLAUDE.md contents despite being loaded in context
- [BUG] Claude Desktop reinstall destroys Code chat history (transcripts + Recents) while regular Chat history, project files, and memory all survive
- Bypass mode clamps to Accept Edits even with the toggle ON (Claude Code Desktop 1.9255.2 / CC 2.1.149)
- [BUG] TUI input freezes randomly mid-typing — entire prompt becomes unresponsive for minutes
- [BUG] Cowork downloads Linux ELF binary instead of macOS binary on macOS Sonoma 14.8.7 — exit code 132 (SIGILL) on every session
- [Feature Request] Persistent project memory — sessions forget everything on close, forcing users to keep many sessions open
- [Bug] Thread context stale after sleep/resume, returns outdated date and calendar data
- [FEATURE] Add context window usage indicator and warning before auto-compaction
- [BUG] Dictation error: Invalid character in header content ["x-config-keyterms"] on Windows
- [Bug] Anthropic API Error: Server rate limiting despite normal usage
- Does delegating work to `claude -p` subprocesses reduce context accumulation in the parent session?
- [BUG] Claude Code hangs on M1 Mac when terminal says "opening browser to sign in" and browser opens
- [BUG] Claude_Preview MCP preview_start spawns dev server with main-repo cwd instead of session's worktree cwd
- [Bug] Anthropic API Error: Server rate limiting during request execution
- [Bug] Anthropic API Error: Server rate limiting on concurrent requests
- [Bug] Ultraplan ready notification fires before cloud agent completes execution
- [BUG] API 500 ERROR ALL THROUGHOUT THE DAY
- [BUG] Cowork: Live Artifacts folder path changed in 1.9255.2, no automatic migration from Documents\Claude\Artifacts
- [Bug] Auto-compact never triggers despite statusline reporting "100% context used" (v2.1.153, Max sub, 200K mode)
- [BUG] [Desktop / macOS] 'Open in → New Window' detached session: font renders smaller than main, no per-window controls, Cmd+/Cmd- keystrokes routed to main window instead
- Feature request: option to switch between classic and new minimal UI
- [Feature Request] Show timestamps for each message
- [BUG] Terminal corruption when permission prompt appears while navigating Agent Teams agent selection menu
- [FEATURE] Allow users to customize the background color of the Claude desktop app beyond the current light/dark theme presets.
- [BUG] Statusline not displaying on Windows [fixed]
- Background agent UI Stop button is a no-op for stuck agents — process keeps consuming tokens
- Background agents silently die on session pause/resume — no completion notification, no work recovery
- Add option to hide email address from welcome banner
- [BUG] SSH Remote: `projects` field in remote ~/.claude.json becomes null after desktop restart — jsonl files intact, UI shows 'No messages yet' for every session
- [Bug] Claude Code not applying fixes despite claiming to complete tasks
- billing is unfair and poorly documented
- [BUG] Claude Code on the web: declared plugins inactive on first session, require restart to fully load
- [BUG] Restore from archive deleted sessions instead of restoring them
- [BUG] M365 connector fails with AADSTS50011 in Cowork — localhost vs 127.0.0.1 redirect URI mismatch
- claude agents: workflow slash-commands missing from dispatch-input completion (regression-adjacent to #61424)
- Claude Desktop's Info.plist missing TCC usage strings, blocks all EventKit-based MCP servers
- False-positive safety blocks on self-administered governance amendments — request for owner-authority mode for verified professional users
- [BUG] Stop pushing "AUTO"-mode
- [DOCS] Plugin marketplace guide omits `skipLfs` option for git-based sources
- [DOCS] MCP docs omit combined startup notification for MCP server and connector authentication
- [DOCS] Agent view docs omit macOS Privacy & Security identity for background agents
- [DOCS] Npm update docs do not explain release-channel behavior for `claude update`
- [DOCS] Agent SDK docs omit `subagent_type: "claude"` worktree and output persistence behavior
- [DOCS] Background session docs omit `$CLAUDE_JOB_DIR` temp-file behavior
- [FR] mask env-var values in 'claude mcp get <server>' output
- [FR] subagent worktrees should not inherit stale local 'user.email' from prior dispatches
- [BUG] Windows: Grep tool leaks rg.exe + conhost.exe processes (~2000 zombies / 14 GB RAM in long sessions)
- [BUG] Stats dashboard "Peak hour" appears off by one hour
- [BUG] Diff highlight (teal SGR background) bleeds past changed text in 2.1.150–2.1.153
- [FEATURE] confirm before deleting session
- Plugin PostToolUse hooks still silently skip in Claude Desktop / Cowork (re-filing closed #51904)
- /code-review skill: silent fallback to main...HEAD reviews other people's commits, and JSON-only output is hard to read
- Monitor tool doesn't source the shell snapshot like Bash does; PATH-dependent tools (jq, sleep, etc.) fail in Monitor commands on macOS/Nix
- [Bug] Long input lines truncated with ellipsis while typing instead of wrapping in terminal UI
- [FEATURE] VS Code extension: Render submitted user messages as Markdown in chat
- OSC 52 copy from Claude TUI doesn't reach clipboard inside tmux (regression in 2.1.146–2.1.153)
- [BUG] RemoteTrigger create/update returns HTTP 400 with circular error: "event_type is required" / "unknown field event_type"
- [BUG] Option to hide or minimize the built-in "status footer" (multi-line debug/cost panel) [re-raise of #31475]
- [Bug] Feedback submissions being closed without review or action
- [FEATURE] Word-jump cursor navigation in Chat input (option+arrow / bindable actions)
- [FEATURE] ! shell mode: filesystem tab completion
- [BUG] API Error: Usage credits required for 1M context
- claude agents: OSC 52 clipboard emission broken in tmux (regression in 2.1.146–2.1.153)
- CLI crashes on macOS 15 M3 - exit code 1
- [FEATURE] Support Cmd+V image paste from clipboard
- [FEATURE] Enhance claude.ai M365 connector to support MS Planner
- [BUG] Slash command autocomplete hijacks pasted absolute file paths starting with /
- PreToolUse hook `if` filter false-positives on complex Bash commands
- [BUG] Diff panel hangs/whites out
- Feature Request: Support drag-and-drop for binary documents (.wps, .doc, .docx, .xlsx, .pdf) in VS Code extension
- [BUG] activation of 1M context in VSCode
- [FEATURE] Support i18n / language localization for built-in slash command outputs
- Ctrl+V para colar imagens deixou de funcionar no CLI (Windows, PowerShell)
- [FEATURE] Please add Norwegian (Bokmål/Nynorsk) language support to the Claude Code interface
- [BUG] OTel log events (claude_code.user_prompt, api_request_body, tool_decision, hook_execution_complete) emitted with empty trace_id/span_id while sibling spans correlate correctly
- [BUG] Cowork crashes on every message, no VM logs generated, missing AppData\Roaming\Claude
- [FEATURE] first-class session handoff + per-session token budgets for unattended runs
- [FEATURE] Smart paste: convert clipboard code to file reference chips (like Cursor)
- [Feature Request] Restore chat pin functionality to title chat submenu
- [BUG] SIGILL issues with version 2.1.153
- [BUG] Cowork plugin upload fails with generic "Plugin validation failed" when a `description` field in any SKILL.md frontmatter contains angle brackets (`<…>`)
- [BUG] Desktop App 2.1.144+: startup scanner deletes cliSessionId from claude-code-sessions local files on every launch — session not found on disk
- [Feature Request] Add keyboard shortcut to copy last message with proper formatting
- [MODEL] Opus 4.7 not 1M
- Allow naming/renaming background agents in `claude agents` view
- Stale worktrees in .claude/worktrees/ are never cleaned up, consuming massive disk space
- Agent worktrees are never cleaned up, silently consuming disk space
- Subagent worktrees not auto-cleaned when reviewer writes scratch files
- [Bug] Skill initialization hangs for extended duration in Plan Mode
- Claude Desktop writes malformed registry Run entry (nested escaped quotes) - crashes Windows Task Manager and other Run-key parsers
- IME candidate window shows at bottom-right corner instead of caret position (Windows CMD)
- [BUG] Pressing 'Escape' doesn't close the /BTW conversation when the main conversation is asking for approval
- [BUG] Opus 4.7 (1M) intermittently emits empty-string values for tool_use.input fields, killing the session
- FleetView agent UI shows "running" with incrementing elapsed time after agent has returned
- /doctor flags context-scoped cmd+c binding as macOS conflict (false positive)
- [BUG] Text Rendering in Elvish
- Desktop app: Bypass Permissions mode flips to Accept Edits on first prompt (M5 / macOS 26.5)
- [Workaround] Date-Weekday Verification Hook — Prevents Claude from writing wrong weekdays
- [BUG] Claude Code create c:/memfs directory without asking me.
- [BUG] Claude Code's Bash execution waits forever with no processes running
- [BUG] usage stays stuck waiting for 5 hr limit after upgrading to premium seat in team plan
- [Workflow tool] resume cache is unreachable for nontrivial workflows because LLM dispatchers can't transcribe args byte-exactly
- Code review (Preview): "Add a repository" shows no results for private GitHub org repos
- [BUG] /context commands blows up context
- [Feature Request] Add precache expiry hook to enable proactive compaction before token eviction
- [BUG] Context indicator shows 0% at session start despite ~20K+ tokens already loaded
- [Feature Request] Add semantic search for --resume session history
- [Feature Request] Add session search, tagging, and filtering capabilities
- [BUG] Cowork Dispatch reports "desktop not available" on Windows 11 while standard Cowork works normally
- [Bug] Claude Code provides incorrect suggestions with high confidence despite errors
- defaultMode: acceptEdits silently overrides per-path permissions.ask rules for Write/Edit
- [FEATUR configurable tip interval (e.g. tipIntervalSeconds: 30 in settings)E]
- Plugin marketplace fails to load: schema rejects 'displayName' key (v2.1.153)
- claude agents: in-session copy uses broken OSC 52 path while overview correctly uses tmux buffer
- [BUG] Plugin agent descriptions (and custom agents) load unconditionally into context — no parity with disable-model-invocation for skills
- Crashed ultrareview consumed a free credit despite producing zero findings
- [Bug] Character rendering issue - invisible or missing text display
- [BUG] Cowork: processo Claude Code encerra com código 3 — .claude.json não contém token de autenticação (Windows 11 25H2)
- [BUG] 2.1.153 silently discards tools/list response from rmcp 0.12.0 HTTP MCP server (works in 2.1.152, wire-identical handshake)
- VS Code extension: option to auto-resume last session when reopening a workspace folder
- [Bug] Conversation continuation failure
- [BUG] Cowork crashes every time I start a new chat or attempt to continue an existing one in any project. The error displayed is: "Claude Code è andato in crash
- [Bug] Unannounced quota changes
- Native update/install fails with 'socket connection was closed unexpectedly' behind proxy — undici TLS incompatibility
- [BUG] Session name reverting after manual change
- [BUG] 非正常思考,上下文过长时,一直显示思考,点击interrupt按钮失效
- Honor `tools:` frontmatter when an agent is invoked via `@mention` — strip `Task` only when the agent did not declare it
- macOS TCC popup still recurring on v2.1.153 — "2.1.153" would like to access data from other apps
- Claude Code leaks pty handles — exhausts pseudo-terminals on macOS after long session
- [Bug] Agent fails to execute or respond to user input
- [BUG] Persistent "Expecting value: line 1 column 1 (char 0)" JSON parse error after tool execution
- [Feature Request] Implement proactive unit test coverage recommendations for recurring bugs
- VS Code panel lacks status line + terminal lacks image paste in Codespaces, forcing a tradeoff
- `/powerup` only shows ~10 lessons — allow viewing the full catalog
- [Bug] Context contamination after auto-compact with unrelated email draft of Tejo/Sado Basin
- [Bug] VSCode terminal output displays corrupted text with garbled symbols
- [Feature Request] Add LaTeX/KaTeX math rendering to TUI
- [Bug] Sub-agent PR review results not validated by orchestrating agent
- Subagents on Pro 1M tier: trivial probes pass, real workloads fail at first tool call (probe-vs-workload divergence)
- Path-scoped rules and subdirectory CLAUDE.md not loaded when creating new files matching the pattern
- AskUserQuestion: cancelling during extended thinking poisons the whole session with 400 'thinking blocks cannot be modified' (2.1.153); concurrent prompts overwrite each other
- Ideas Missing from Claude Cowork Menu (Windows)
- [BUG_BOUNTY_SAFE_POC_2026] Prompt Injection RCE Test - Command Execution Proof
- [BUG] Cowork scheduled task: execution history row not showing after successful run
- Resuming an extended-thinking session fails permanently with 400 "thinking blocks cannot be modified" (transcript stores thinking text as empty but keeps signature)
- [Bug] Plugin-registered CwdChanged and FileChanged hooks don't fire (settings.json works) — v2.1.153
- Auto-archive on PR merge / branch delete — clarify autoArchiveSessions semantics or add dedicated opt-out
- `claude mcp add` echoes Authorization header value verbatim to stdout, leaks bearer tokens to terminal and session transcripts
- [BUG] Bug report — /insights skill, Claude Code The /insights skill outputs a malformed file path.
- Plugin slash commands render with '*'-inline format instead of two-column, despite matching official plugin shape
- [Bug] Unexpected long text generation without user input or goal
- [Bug] Thinking blocks causing task progression blocked without user modification
- [BUG] (Critical!) contamination by an unknown session simirlar to the report => [Bug] Context contamination after auto-compact with unrelated email draft of Tejo/Sado Basin #63137
- [Critical] Opus 4.7 Korean output degeneration — Korean grammar itself collapses in long contexts
- [BUG] Title: Autocompact buffer persists across /clear — wastes tokens for irrelevant old context
- [Bug] Auto-Compact loses user input before processing in conversation history
- Feature: per-invocation effort parameter + runtime session-config introspection for skills
- Auto-mode classifier mislabels Azure DevOps vote -5 as "Reject" when denying PR vote actions
- [BUG] Claude Desktop and Claude Code CLI never re-register MCP tools after OAuth 2.1 handshake on a remote HTTP server
- [BUG] Workspace file tags leak across sessions
- [BUG] Ink renderer crashes on Windows 11 build 26200 (Canary) duplicate banners, terminal mode leaks, mid-operation aborts
- [BUG] Claude Code Desktop issue
- PTY master fd leak in Claude desktop app exhausts macOS kern.tty.ptmx_max after ~2-3 days
- [BUG] Claude Code — Session Management after Unexpected Interruption
- [Windows] Cowork OpenTelemetry exporter does not initialize - zero events emitted to any destination, including loopback
- [Bug] Opus 4.7: 400 `thinking blocks ... cannot be modified` on long extended-thinking sessions, triggered by history-altering events (scheduled prompts / parallel tool-call cancellation)
- [BUG] API Error: Server is temporarily limiting requests (not your usage limit) · Rate limited
- Multi-plugin custom marketplace: only first plugin registered in installed_plugins.json, skills don't load
- [BUG] Git push through the SDK's git proxy fan-outs into ~500 GitHub REST API calls, exhausting the 5,000/hour budget after a handful of pushes
- [BUG] Claude took liberties it really shouldn't with my global config
- [BUG] Agent window focus lost after navigating with arrow keys, causing scroll deadlock
- [BUG] `--model` flag silently ignored in interactive sessions (works in `--print` only)
- [BUG] Dispatch permanently shows "desktop appears offline" on Windows 11 - never worked on first use
- feat: support per-command enableWeakerNetworkIsolation as safer alternative to dangerouslyDisableSandbox
- /code-review outputs a raw JSON array instead of readable findings
- [BUG] Cowork — Additional allowed domains ignored on Team plan; same domain works on Pro plan
- Haiku
- [Bug] False positive blocking beneficial outcomes in tool execution
- 3P Bedrock SSO: credentials silently expire without triggering re-auth on day 2+
- CLAUDE_AUTOCOMPACT_PCT_OVERRIDE in settings.json env block silently ignored by autocompact logic
- Auto-compaction deletes main session JSONL before verifying summary completion, causing data loss
- [Bug] Claude Code not executing stated actions or producing expected results
- [FEATURE] Deferred Messages — Queue Input for End of Turn
- [BUG] Up/Down arrows in input box navigate history instead of moving cursor — regression in 2.1.149+
- Cancelling a parallel tool-call batch corrupts thinking blocks -> 400 "thinking blocks cannot be modified" permanently wedges the session
- Claude Code caused data loss, then contradicted itself about recovery (two incidents, one session)
- [Bug] Unclear error messages from Claude Code CLI
- [Bug] Agent tool rejecting due to context size limit exceeded
- claude agents: daemon and bg-spare processes spin at ~100% CPU when idle
- [BUG] Compaction fails with "context window limit" error even when context usage is low (e.g., 20%) — regression in v2.1.153
- Remote Control entitlement lost after May 27-28 incident — `Error: Remote Control is not yet enabled for your account` on active Max subscription
- PreToolUse hook exit code 2 does not block Write tool
- [Bug] Thinking blocks in latest assistant message are immutable
- GUI: dispatch file:// and custom-scheme clicks to OS shell handler
- Show current model in statusLine by default
- [Bug] Agent console becomes unresponsive to keyboard input after multiple agents initialized
- [FEATURE] PreToolUse hooks should have a way of updating the environment
- [Bug] Unable to start or use Claude Code CLI
- [BUG] Repository not visible in Claude Code web repo picker
- Session permanently wedged on 400 "thinking blocks cannot be modified" after parallel tool_results
- [Bug] @ autocomplete loses sibling repos after a file edit in multi-repo workspace
- Unclear error message when creating sub-agent without authentication
- [Bug] Anthropic API errors causing frequent failures and high token usage
- [BUG] @ mention file picker only shows packages, not individual files (desktop app - Code tab)
- [Bug] TUI panel footer remains sticky and consumes excessive terminal space
- PR-status polling exhausts GitHub GraphQL rate limit on repos with many open PRs
- [BUG] Windows: welcome panel not shown in some project folders (2.1.153)
- [Bug] Anthropic API Error: thinking blocks corrupted during context compaction with extended thinking enabled
- API 400 "thinking blocks cannot be modified" permanently bricks session during agent activation (interleaved thinking + tool use)
- Right-click Copy copies the whole message instead of the selection; pasted text retains dark background
- Mid-session model switch corrupts conversation when extended thinking is enabled (API 400: 'thinking blocks cannot be modified')
- [BUG] Markdown file links in chat output do not open files when clicked (VS Code extension)
- Stuck retry loop: `400 thinking blocks cannot be modified` on large interleaved-thinking turns using AskUserQuestion
- [FEATURE] Prompt user for approval before auto-compaction proceeds
- Custom MCP connectors not attachable to scheduled routines — no UUID discovery path
- [BUG] Claude in Chrome — Navigation blocked for teams.cloud.microsoft and outlook.cloud.microsoft after Microsoft domain migration**
- [BUG] Claude Desktop — Personal plugins panel renders list but is entirely non-interactive (macOS, v1.9255.2)
- [Bug] error when using Workflows
- [BUG] Persistent "update available" notification despite being on latest version
- [BUG] Sweep Agent from /code-review never completes
- [Bug] Tool calls not executing or returning results
- [FEATURE] Cloud-synced memory and settings across machines
- [Bug] Terminal UI freezes when Ctrl+O view exits during interactive prompt in plan mode
- Continuous api errors when using claude code with Opus 4.7 with thinking on low
- [Feature Request] Add support for installing and using previous Claude Code versions
- [Bug] Extended Thinking: Summarized thinking blocks fail signature validation when resent to API
- [Bug] Anthropic API Error: 'thinking' blocks cannot be modified
- [Bug] Anthropic API Error: Thinking blocks cannot be modified with extended thinking mode
- Feature request: Lazy/on-demand MCP server connections
- [Bug] Tool Arguments Parsed as String Instead of Object
- [Bug] Anthropic API Error: Insufficient context provided
- [Bug] Claude Opus occasionally uses moskovian(russian) orthography instead of Ukrainian in system-prompted responses
- Opus 4.8: backgrounded task completions (subagents AND Bash) crash with 400 "thinking blocks cannot be modified"
- [Bug] Opus 4.7 fabricates stable preferences ("my default") to rationalize arbitrary choices when challenged
- [Bug] Unable to update Claude Code CLI
- [BUG] Desktop app: /remote-control mints link + connects bridge (main.log) but in-chat link/QR panel never renders
- Feature: sessionColor and sessionName in .claude/settings.json
- [BUG] Anthropic API error: thinking blocks
- [FEATURE] Support Remote MCPs in Cowork as in Claude Code
- [Bug] Anthropic API Error: 400 Bad Request with Redacted Thinking - 0 4.7 & 4.8
- [Bug] Anthropic API Error: Cannot modify thinking blocks from different model versions
- Interleaved thinking + multi-tool turn corrupts thinking block (text blanked, signature kept) → permanent 400 'blocks must remain as they were'
- [BUG] Mode/permission changes mid-tool-loop (effortLevel: xhigh) poisons entire session
- Session failure log: Opus 4.6 ignores its own rules for an entire session
- [BUG] "400 Guardrail was enabled" error when using Claude Opus 4.8 with AWS Bedrock
- [Feature Request] Add subagent approach selection option to avoid accidental feedback
- Persistent 400 'thinking blocks in the latest assistant message cannot be modified' — interleaved thinking persisted with empty text + signature bricks sessions
- [BUG] DesktopvsApp
- [BUG] Opus 4.7 cache hit rate collapse after May 27 incident — Messages 1.1k→88.9k in 9 minutes, $630/session
- [Bug] Anthropic API Error: Invalid thinking block format
- [BUG] FUCK CLAUDE
- Opus 4.8 extended thinking: Stop hook block re-entry corrupts thinking blocks → 400
- [Bug] 4.8 Fails when accessing previous model history
- [Bug] Unintended File Modifications During Execution
- [DOCS] Model configuration docs omit lean system prompt default scope and model exceptions
- Add "Always allow globally" option to permission prompts
- Server-side model upgrade (Opus 4.7→4.8) wedges in-flight sessions with `thinking blocks cannot be modified` 400
- [DOCS] AskUserQuestion docs missing multiple-choice prompt decision threshold
- [DOCS] Agent view docs omit shell-command background session launch syntax
- [DOCS] Agent view dispatch input docs incorrectly imply `/logout` dispatches as a prompt
- [DOCS] Claude in Chrome docs omit connected-browser selection behavior
- [DOCS] Plugin docs omit `defaultEnabled: false` for opt-in plugins
- Feature Request: Customizable chat text colors for user and assistant messages
- [DOCS] `/plugin` Discover tab docs omit directory-based suggested plugin pins
- VSCode Chrome integration silently fails: 3 distinct bugs
- [DOCS] MCP stdio docs omit session environment variables
- [Bug] Anthropic API error on second request within session with Claude Opus 4.8
- Cowork emits a blank session "index" handoff on focus when a CLI session is paused awaiting input
- [DOCS] MCP docs omit `claude mcp list/get` pending-approval output for unapproved project servers
- [BUG] /compact fails with 400 error when last assistant turn contains thinking blocks
- [DOCS] `/claude-api` docs omit Opus 4.8 migration guidance
- [DOCS] Fast mode docs still recommend deprecated Opus 4.6 override variable
- [DOCS] Bash tool docs omit `$TMPDIR` consistency across sandboxed and unsandboxed commands
- [Bug] Anthropic API Error: 400 Bad Request on Extended Thinking
- [DOCS] Background session docs omit worktree-isolation behavior for spawned subagents
- Built-in mechanistic self-verification of verifiable claims (symmetric to the auto permission gate)
- [DOCS] Worktree docs do not clarify `worktree.baseRef: "head"` inside linked worktrees
- [BUG] Excessive RAM usage with multiple parallel chats (~10 sessions → 30 GB memory pressure, macOS OOM)
- [DOCS] Managed MCP policy docs omit invalid `allowedMcpServers`/`deniedMcpServers` entry behavior
- [DOCS] Effort docs omit `CLAUDE_CODE_ALWAYS_ENABLE_EFFORT` unsupported-model behavior
- Regression (2.1.147–2.1.150?): resuming an extended-thinking session after a CC update/model-switch → unrecoverable 400, session bricked
- [DOCS] Windows updater docs omit `claude.exe` in-use recovery guidance
- [DOCS] VS Code auto mode docs still tie mode-picker visibility to bypass-permissions setting
- [DOCS] MCP docs omit `/mcp` tool list and detail rendering behavior
- [DOCS] Fine-grained tool streaming docs still describe provider opt-in behavior
- bypassPermissions: session startup reads flat pref, GUI toggle writes per-account pref — they never sync
- [BUG] Claude Desktop Code tab causes disk write limit violation — 8.5GB in 11 min, macOS kills app (M5, v1.9659.1)
- Ultrareview v2.1.96: docs describe /tasks command + claude ultrareview --json subcommand that don't exist; findings hard to read after completion
- I'd be happy to help create a GitHub issue title, but I don't see the error message in your message. Could you please share the specific error you're encountering? That way I can generate an accurate and descriptive issue title for you.
- [BUG] Claude in Chrome `file_upload` rejects all scheduled-task sessions with misleading error (real cause: INVALID_SESSION)
- Extended thinking: signed thinking block 'cannot be modified' (400) permanently wedges session
- RTL text support for Hebrew (and Arabic) in Claude Code
- [Bug] Random errors occurring across multiple operations