File tree Expand file tree Collapse file tree
rust/operator-binary/src/security Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -78,8 +78,11 @@ impl CoreSiteConfigBuilder {
7878 cluster_info : & KubernetesClusterInfo ,
7979 ) -> Result < & mut Self > {
8080 if kerberos. authentication_enabled {
81- let principal_host_part =
82- principal_host_part ( kerberos. cluster_name , kerberos. cluster_namespace , cluster_info) ?;
81+ let principal_host_part = principal_host_part (
82+ kerberos. cluster_name ,
83+ kerberos. cluster_namespace ,
84+ cluster_info,
85+ ) ?;
8386
8487 self . add ( "hadoop.security.authentication" , "kerberos" )
8588 // Not adding hadoop.registry.kerberos.realm, as it seems to not be used by our customers
@@ -148,8 +151,11 @@ impl CoreSiteConfigBuilder {
148151 cluster_info : & KubernetesClusterInfo ,
149152 ) -> Result < & mut Self > {
150153 if kerberos. kerberos_enabled {
151- let principal_host_part =
152- principal_host_part ( kerberos. cluster_name , kerberos. cluster_namespace , cluster_info) ?;
154+ let principal_host_part = principal_host_part (
155+ kerberos. cluster_name ,
156+ kerberos. cluster_namespace ,
157+ cluster_info,
158+ ) ?;
153159
154160 self . add ( "hadoop.security.authentication" , "kerberos" )
155161 . add (
You can’t perform that action at this time.
0 commit comments