Skip to content
This repository was archived by the owner on May 27, 2025. It is now read-only.

Commit 23b82c6

Browse files
committed
clean up comments
1 parent e1c995b commit 23b82c6

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/subscriber.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ where
4040
}
4141

4242
pub async fn run(&mut self, token: CancellationToken) {
43-
// Added the URI to the log message for better identification
4443
info!(
4544
message = "starting upstream subscription",
4645
uri = self.uri.to_string()
@@ -63,7 +62,6 @@ where
6362
);
6463
}
6564
Err(e) => {
66-
// Added URI to the error log for better debugging
6765
error!(
6866
message = "upstream websocket error",
6967
uri = self.uri.to_string(),
@@ -74,7 +72,6 @@ where
7472
self.metrics.upstream_connections.decrement(1);
7573

7674
if let Some(duration) = self.backoff.next_backoff() {
77-
// Added URI to the warning message
7875
warn!(
7976
message = "reconnecting",
8077
uri = self.uri.to_string(),

0 commit comments

Comments
 (0)