mirror of
https://github.com/prometheus/prometheus.git
synced 2026-05-28 04:02:21 -04:00
Merge pull request #13313 from kalpadiptyaroy/fix-quality-value-accept-header
bug: Fix quality value in accept header
This commit is contained in:
commit
0763ec841b
1 changed files with 1 additions and 1 deletions
|
|
@ -675,7 +675,7 @@ func acceptHeader(sps []config.ScrapeProtocol) string {
|
|||
weight--
|
||||
}
|
||||
// Default match anything.
|
||||
vals = append(vals, fmt.Sprintf("*/*;q=%d", weight))
|
||||
vals = append(vals, fmt.Sprintf("*/*;q=0.%d", weight))
|
||||
return strings.Join(vals, ",")
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue