Skip to content

Commit

Permalink
fix: remove unusual reference
Browse files Browse the repository at this point in the history
  • Loading branch information
ruslanti committed Jun 26, 2024
1 parent 6665f8a commit 9ea3f01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/http-service/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ where
let listener = if let Some(fd) = owned_fd {
TcpListener::from(fd)
} else {
TcpListener::bind(&addr)?
TcpListener::bind(addr)?
};
let listen_addr = listener.local_addr()?;
let service = Arc::new(self);
Expand Down

0 comments on commit 9ea3f01

Please sign in to comment.