We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76f9fc8 commit 883872fCopy full SHA for 883872f
langgraph/checkpoint/redis/jsonplus_redis.py
@@ -32,7 +32,7 @@ def loads(self, data: bytes) -> Any:
32
try:
33
# Fast path: Use orjson for JSON data
34
return orjson.loads(data)
35
- except (orjson.JSONDecodeError, TypeError, ValueError):
+ except orjson.JSONDecodeError:
36
# Fallback: Parent handles msgpack and other formats
37
return super().loads(data)
38
0 commit comments