Skip to content

Commit db81610

Browse files
committed
fix: remove incorrect warnings
1 parent c6455f7 commit db81610

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/lib.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ use pulsebeam::v1::{IceServer, Message};
99
use pulsebeam::v1::{PeerInfo, PrepareReq, PrepareResp, RecvReq, RecvResp, SendReq, SendResp};
1010
use std::sync::Arc;
1111
use tokio::time;
12-
use tracing::warn;
1312
use twirp::async_trait::async_trait;
1413

1514
const SESSION_POLL_TIMEOUT: time::Duration = time::Duration::from_secs(1200);
@@ -75,11 +74,9 @@ impl Server {
7574
_ = poll_timeout.tick() => {}
7675
}
7776

78-
// TODO: deduplicate messages
7977
if let Some(msg) = msg {
8078
msgs.push(msg);
8179
} else {
82-
warn!("senders have dropped");
8380
return msgs;
8481
}
8582
}

0 commit comments

Comments
 (0)