Still same with: ``` let data = b"Hello world!"; match socket.write_all(data).await { Ok(()) => {} Err(e) => { warn!("write error: {:?}", e); break; } }; ```