Skip to content

Commit

Permalink
bugfixes with PR checkouts and WS closures (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
eriktaubeneck authored Apr 24, 2024
1 parent 87816af commit 1c0c83d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions sidecar/app/query/ipa.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,7 @@ class IPACoordinatorQuery(IPAQuery):

step_classes: ClassVar[list[type[Step]]] = [
IPACloneStep,
IPAUpdateRemoteOriginStep,
IPAFetchUpstreamStep,
IPACheckoutCommitStep,
IPACorrdinatorCompileStep,
Expand Down
2 changes: 1 addition & 1 deletion sidecar/app/routes/websockets.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async def use_websocket(websocket):
yield websocket
except (WebSocketDisconnect, ConnectionClosedOK, ConnectionClosedError):
pass
finally:
else:
await websocket.close()


Expand Down

0 comments on commit 1c0c83d

Please sign in to comment.