Add servers (#3315)

This commit is contained in:
Quentin Le Sceller 2020-05-21 13:07:28 -04:00 committed by GitHub
parent 952bdcc4c8
commit 5d0791bbd1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -633,7 +633,6 @@ fn accept_connections(listen_addr: SocketAddr, handler: Arc<Handler>) {
let write = async move {
while let Some(line) = rx.next().await {
let line = line + "\n";
writer
.send(line)
.await