Skip to content

Commit

Permalink
[ignore] Remove typo * sign from wcard expression
Browse files Browse the repository at this point in the history
  • Loading branch information
akinross authored and lhercot committed Jun 25, 2024
1 parent eae7e6a commit 3f31989
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aci/data_source_aci_fvcep.go
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ func dataSourceAciClientEndPointRead(d *schema.ResourceData, m interface{}) erro
if queryString != "" {
queryString = fmt.Sprintf("%s,wcard(fvCEp.dn, \"%s\")", queryString, filterDn.(string))
} else {
queryString = fmt.Sprintf("wcard(fvCEp.dn, \"%s*\")", filterDn.(string))
queryString = fmt.Sprintf("wcard(fvCEp.dn, \"%s\")", filterDn.(string))
}
}

Expand Down

0 comments on commit 3f31989

Please sign in to comment.