diff options
author | Kevin Guthrie <[email protected]> | 2024-05-03 15:49:39 -0400 |
---|---|---|
committer | Kevin Guthrie <[email protected]> | 2024-05-07 16:10:48 +0000 |
commit | c99ab6086fe91e97083606d498665af6670a4696 (patch) | |
tree | c008e0135bbbae0e5da4c80dc4d1016884ff3566 | |
parent | 91615dc6994e831a305d41ca5d23107b4df85af2 (diff) | |
download | pingora-c99ab6086fe91e97083606d498665af6670a4696.tar.gz pingora-c99ab6086fe91e97083606d498665af6670a4696.zip |
cargo fmt
-rw-r--r-- | .bleep | 2 | ||||
-rw-r--r-- | pingora-proxy/src/lib.rs | 5 |
2 files changed, 2 insertions, 5 deletions
@@ -1 +1 @@ -6c5858ed364e54961a79110d08f8cece89bb9b04
\ No newline at end of file +db858a34938d5a4f3eefbc5187cc225dde5c02de
\ No newline at end of file diff --git a/pingora-proxy/src/lib.rs b/pingora-proxy/src/lib.rs index da21ed3..a60e6a7 100644 --- a/pingora-proxy/src/lib.rs +++ b/pingora-proxy/src/lib.rs @@ -645,8 +645,5 @@ pub fn http_proxy_service_with_name<SV>( inner: SV, name: &str, ) -> Service<HttpProxy<SV>> { - Service::new( - name.to_string(), - HttpProxy::new(inner, conf.clone()), - ) + Service::new(name.to_string(), HttpProxy::new(inner, conf.clone())) } |