Skip to content

Commit

Permalink
CA-399256: Ensure AD domain name check is case insensitive (#6047)
Browse files Browse the repository at this point in the history
  • Loading branch information
lindig authored Oct 10, 2024
2 parents 59ea7bc + aa09cb8 commit 01b6205
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ocaml/xapi/xapi_pool.ml
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,8 @@ let pre_join_checks ~__context ~rpc ~session_id ~force =
slavetobe_auth_type slavetobe_auth_service_name ;
if
slavetobe_auth_type <> master_auth_type
|| slavetobe_auth_service_name <> master_auth_service_name
|| String.lowercase_ascii slavetobe_auth_service_name
<> String.lowercase_ascii master_auth_service_name
then (
error
"Cannot join pool whose external authentication configuration is \
Expand Down

0 comments on commit 01b6205

Please sign in to comment.