Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
Close ijson coroutines ourselves instead of letting the GC close them
Browse files Browse the repository at this point in the history
Hopefully this means that exceptions raised due to truncated JSON
get a sensible logging context and stack.

Signed-off-by: Sean Quah <[email protected]>
  • Loading branch information
Sean Quah committed May 25, 2022
1 parent 4660d9f commit bb24948
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelog.d/12875.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Explicitly close `ijson` coroutines once we are done with them, instead of leaving the garbage collector to close them.
9 changes: 7 additions & 2 deletions synapse/federation/transport/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1363,7 +1363,7 @@ class SendJoinParser(ByteParser[SendJoinResponse]):
def __init__(self, room_version: RoomVersion, v1_api: bool):
self._response = SendJoinResponse([], [], event_dict={})
self._room_version = room_version
self._coros = []
self._coros: List[Generator[None, bytes, None]] = []

# The V1 API has the shape of `[200, {...}]`, which we handle by
# prefixing with `item.*`.
Expand Down Expand Up @@ -1411,6 +1411,9 @@ def write(self, data: bytes) -> int:
return len(data)

def finish(self) -> SendJoinResponse:
for c in self._coros:
c.close()

if self._response.event_dict:
self._response.event = make_event_from_dict(
self._response.event_dict, self._room_version
Expand All @@ -1430,7 +1433,7 @@ class _StateParser(ByteParser[StateRequestResponse]):
def __init__(self, room_version: RoomVersion):
self._response = StateRequestResponse([], [])
self._room_version = room_version
self._coros = [
self._coros: List[Generator[None, bytes, None]] = [
ijson.items_coro(
_event_list_parser(room_version, self._response.state),
"pdus.item",
Expand All @@ -1449,4 +1452,6 @@ def write(self, data: bytes) -> int:
return len(data)

def finish(self) -> StateRequestResponse:
for c in self._coros:
c.close()
return self._response

0 comments on commit bb24948

Please sign in to comment.