Skip to content

Commit 883872f

Browse files
bsboddenCopilot
andauthored
Update langgraph/checkpoint/redis/jsonplus_redis.py
Co-authored-by: Copilot <[email protected]>
1 parent 76f9fc8 commit 883872f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

langgraph/checkpoint/redis/jsonplus_redis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def loads(self, data: bytes) -> Any:
3232
try:
3333
# Fast path: Use orjson for JSON data
3434
return orjson.loads(data)
35-
except (orjson.JSONDecodeError, TypeError, ValueError):
35+
except orjson.JSONDecodeError:
3636
# Fallback: Parent handles msgpack and other formats
3737
return super().loads(data)
3838

0 commit comments

Comments
 (0)