Private
Public Access
1
0

websocket: automatically reconnect if not heard from for a while

This commit is contained in:
2025-05-14 17:39:23 -07:00
parent 4ad9613827
commit 83eb97fd9c
5 changed files with 80 additions and 23 deletions

View File

@@ -105,7 +105,7 @@ impl APIInterface for TestClient {
Ok(message)
}
async fn open_event_socket(&mut self) -> Result<impl EventSocket, Self::Error> {
async fn open_event_socket(&mut self, _update_seq: Option<u64>) -> Result<impl EventSocket, Self::Error> {
Ok(TestEventSocket::new())
}
}