diff options
Diffstat (limited to 'src/sync/mod.rs')
| -rw-r--r-- | src/sync/mod.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sync/mod.rs b/src/sync/mod.rs index 85ab680..3f8e503 100644 --- a/src/sync/mod.rs +++ b/src/sync/mod.rs | |||
| @@ -1205,8 +1205,8 @@ impl SyncManager { | |||
| 1205 | 1205 | ||
| 1206 | let timeout = self.health_tracker.base_backoff_secs(); | 1206 | let timeout = self.health_tracker.base_backoff_secs(); |
| 1207 | 1207 | ||
| 1208 | match connection.connect_and_subscribe(None, timeout).await { | 1208 | match connection.connect(timeout).await { |
| 1209 | Ok(_) => { | 1209 | Ok(()) => { |
| 1210 | // Success - record and send notification | 1210 | // Success - record and send notification |
| 1211 | self.health_tracker.record_success(relay_url); | 1211 | self.health_tracker.record_success(relay_url); |
| 1212 | 1212 | ||
| @@ -1346,7 +1346,7 @@ impl SyncManager { | |||
| 1346 | 1346 | ||
| 1347 | // 3. Keep RelayConnection in HashMap for reuse on reconnect | 1347 | // 3. Keep RelayConnection in HashMap for reuse on reconnect |
| 1348 | // The connection object persists and will be reused when retry_disconnected_relays | 1348 | // The connection object persists and will be reused when retry_disconnected_relays |
| 1349 | // calls try_connect_relay -> connection.connect_and_subscribe() | 1349 | // calls try_connect_relay -> connection.connect() |
| 1350 | tracing::debug!( | 1350 | tracing::debug!( |
| 1351 | relay = %relay_url, | 1351 | relay = %relay_url, |
| 1352 | "Keeping RelayConnection in HashMap for reconnection" | 1352 | "Keeping RelayConnection in HashMap for reconnection" |