From dbd8654a7a9e69d34e1be48551ba61b45a25fc10 Mon Sep 17 00:00:00 2001 From: Waldemar Heinze Date: Thu, 24 Nov 2022 09:36:32 +0100 Subject: [PATCH] style: cargo fmt --- server/src/infra/ldap_server.rs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/server/src/infra/ldap_server.rs b/server/src/infra/ldap_server.rs index ec9e96f..63cb016 100644 --- a/server/src/infra/ldap_server.rs +++ b/server/src/infra/ldap_server.rs @@ -212,8 +212,12 @@ where config.ldaps_options.port ); server_builder.and_then(|s| { - s.bind("ldaps", (config.host.clone(), config.ldaps_options.port), tls_binder) - .with_context(|| format!("while binding to the port {}", config.ldaps_options.port)) + s.bind( + "ldaps", + (config.host.clone(), config.ldaps_options.port), + tls_binder, + ) + .with_context(|| format!("while binding to the port {}", config.ldaps_options.port)) }) } else { server_builder