Initial AUTH support

This commit is contained in:
vic
2023-10-25 20:15:18 -04:00
parent 8086e4d8ba
commit d42448f300
4 changed files with 31 additions and 5 deletions

View File

@@ -100,7 +100,7 @@ class Relay:
def close_subscription(self, id: str) -> None:
with self.lock:
self.subscriptions.pop(id)
self.subscriptions.pop(id, None)
def update_subscription(self, id: str, filters: Filters) -> None:
with self.lock: