Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Investigate websocket timeouts #20850

Closed
wants to merge 13 commits into from

Fix typo

  • Loading branch information
jdm committed Jun 7, 2018
commit e646931df7ce1159d9eb32ce03f0728a3f47726b
@@ -149,7 +149,7 @@ fn obtain_a_websocket_connection(url: &ServoUrl) -> Result<Stream, NetworkError>
let tcp_stream = TcpStream::connect((&*host, port)).map_err(|e| {
NetworkError::Internal(format!("Could not connect to host: {}", e))
})?;
debug!("made TCP connection to {}:{}"), host, port);
debug!("made TCP connection to {}:{}", host, port);
Ok(HttpStream(tcp_stream))
}

ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.