mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2025-01-04 13:52:05 +01:00
ffebc20f6d
The v1.2.0 adds HostClient.DoCtx() function, which is needed by https://github.com/VictoriaMetrics/VictoriaMetrics/issues/3747 for implementing fast canceling of pending requests to scrape targets on config update
10 lines
138 B
Go
10 lines
138 B
Go
//go:build !amd64 && !arm64 && !ppc64
|
|
// +build !amd64,!arm64,!ppc64
|
|
|
|
package fasthttp
|
|
|
|
const (
|
|
maxIntChars = 9
|
|
maxHexIntChars = 7
|
|
)
|