Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions fix(tee): close old HTTP client after registry reconnect
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## Summary

Fixes a connection leak in `RegistryTEEConnection.reconnect()`.

The reconnect path was creating a new active TEE connection without closing the old HTTP client. In long-running processes that refresh or fail over repeatedly, this can leave stale clients open and slowly leak resources.

Fixes #247

## Problem

`RegistryTEEConnection.reconnect()` previously did this:

```python
self._active = self._connect()
Loading