Skip to content

Commit

Permalink
CA-399256: Ensure AD domain name check is case insensitive
Browse files Browse the repository at this point in the history
Signed-off-by: Elijah Sadorra <[email protected]>
  • Loading branch information
ElijahSadorra committed Oct 9, 2024
1 parent f45e406 commit aa09cb8
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 aa09cb8

Please sign in to comment.