Skip to content

Commit c555ab1

Browse files
committed
removed debugging prints left in by accident
1 parent d95b421 commit c555ab1

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/server/decode.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,9 +118,7 @@ fn set_url_and_port_from_host_header(req: &mut Request) -> http_types::Result<()
118118

119119
if !req.url().cannot_be_a_base() {
120120
if let Some(colon) = host.find(":") {
121-
println!("AAAA");
122121
req.url_mut().set_host(Some(&host[0..colon]))?;
123-
println!("AAAA");
124122
req.url_mut()
125123
.set_port(host[colon + 1..].parse().ok())
126124
.unwrap();

0 commit comments

Comments
 (0)