aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorKevin Guthrie <[email protected]>2024-05-03 15:49:39 -0400
committerKevin Guthrie <[email protected]>2024-05-07 16:10:48 +0000
commitc99ab6086fe91e97083606d498665af6670a4696 (patch)
treec008e0135bbbae0e5da4c80dc4d1016884ff3566
parent91615dc6994e831a305d41ca5d23107b4df85af2 (diff)
downloadpingora-c99ab6086fe91e97083606d498665af6670a4696.tar.gz
pingora-c99ab6086fe91e97083606d498665af6670a4696.zip
cargo fmt
-rw-r--r--.bleep2
-rw-r--r--pingora-proxy/src/lib.rs5
2 files changed, 2 insertions, 5 deletions
diff --git a/.bleep b/.bleep
index 7e9c425..f2904f0 100644
--- a/.bleep
+++ b/.bleep
@@ -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()))
}