We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03ff273 commit a541dfcCopy full SHA for a541dfc
cookbooks/aws-parallelcluster-environment/libraries/directory_service_utils.rb
@@ -21,7 +21,7 @@ def parse_arn(arn_string)
21
def _get_cn_subparam(param)
22
tokens = param.split(",") unless param.blank?
23
tokens.each do |token|
24
- return token if token.include? "cn"
+ return token if token.downcase.start_with? "cn"
25
end
26
""
27
0 commit comments