forked from mirrors/kingfisher
updated alibaba rule
This commit is contained in:
parent
92ca07739a
commit
32be18bef0
1 changed files with 6 additions and 7 deletions
|
|
@ -632,13 +632,12 @@ impl DetailsReporter {
|
|||
(None, None)
|
||||
} else {
|
||||
// Try to find AKID from captures (for AWS)
|
||||
let akid_from_captures: Option<String> = rm
|
||||
.m
|
||||
.groups
|
||||
.captures
|
||||
.iter()
|
||||
.find(|c| c.name == Some("AKID") || c.name == Some("akid"))
|
||||
.map(|c| c.raw_value().to_string());
|
||||
let akid_from_captures: Option<String> =
|
||||
rm.m.groups
|
||||
.captures
|
||||
.iter()
|
||||
.find(|c| c.name == Some("AKID") || c.name == Some("akid"))
|
||||
.map(|c| c.raw_value().to_string());
|
||||
|
||||
// Try to extract AKID from validation response body (fallback for AWS)
|
||||
let akid_from_body = extract_akid_from_validation_body(&rm.validation_response_body);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue