mirror of
https://github.com/prometheus/prometheus.git
synced 2025-02-21 03:16:00 -08:00
corrected regex string check for anyorigin(*) (#5117)
Signed-off-by: Hrishikesh Barman <hrishikeshbman@gmail.com>
This commit is contained in:
parent
24f19f03db
commit
9c4e258651
|
@ -36,7 +36,7 @@ func SetCORS(w http.ResponseWriter, o *regexp.Regexp, r *http.Request) {
|
|||
w.Header().Set(k, v)
|
||||
}
|
||||
|
||||
if o.String() == ".*" {
|
||||
if o.String() == "^(?:.*)$" {
|
||||
w.Header().Set("Access-Control-Allow-Origin", "*")
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue