Skip to content

Commit

Permalink
lints
Browse files Browse the repository at this point in the history
  • Loading branch information
nyurik committed Dec 30, 2023
1 parent 2ac95d5 commit 85a85c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/support/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ impl Drop for Server {
pub fn http<F, Fut>(func: F) -> Server
where
F: Fn(http::Request<hyper::Body>) -> Fut + Clone + Send + 'static,
Fut: Future<Output = http::Response<hyper::Body>> + Send + 'static,
Fut: Future<Output = Response<hyper::Body>> + Send + 'static,
{
//Spawn new runtime in thread to prevent reactor execution context conflict
thread::spawn(move || {
Expand Down

0 comments on commit 85a85c7

Please sign in to comment.