We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4830226 commit a79a201Copy full SHA for a79a201
src/net/test/tcp_proxy.rs
@@ -89,12 +89,12 @@ impl TcpProxy {
89
90
pub async fn start(&mut self) {
91
let _ = self.state_inlet.send(State::On);
92
- self.off_lock.write().await;
+ let _ = self.off_lock.write().await;
93
}
94
95
pub async fn stop(&mut self) {
96
let _ = self.state_inlet.send(State::Off);
97
- self.on_lock.write().await;
+ let _ = self.on_lock.write().await;
98
99
100
pub async fn reset(&mut self) {
0 commit comments