mirror of
https://github.com/prometheus/prometheus
synced 2025-01-29 10:52:50 +00:00
375ad1185c
* *: bump gRPC dependencies This change updates the gRPC dependencies to more recent versions: * github.com/gogo/protobuf => v1.2.0 * github.com/grpc-ecosystem/grpc-gateway => v1.6.3 * google.golang.org/grpc => v1.17.0 In addition scripts/genproto.sh leverages Go modules information instead of hardcoding SHA1 commits. This ensures that the code is generated from the exact same sources. Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Run 'make proto' in CI Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Revert tabs -> spaces change Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Fix 'make proto' step Signed-off-by: Simon Pasquier <spasquie@redhat.com> * 'go get' grpc/protobuf dependencies Signed-off-by: Simon Pasquier <spasquie@redhat.com> * Prepopulate cache with go mod download Signed-off-by: Simon Pasquier <spasquie@redhat.com>
27 lines
647 B
Go
27 lines
647 B
Go
// Copyright 2018 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// +build go1.11
|
|
|
|
package http2
|
|
|
|
import "net/textproto"
|
|
|
|
func traceHasWroteHeaderField(trace *clientTrace) bool {
|
|
return trace != nil && trace.WroteHeaderField != nil
|
|
}
|
|
|
|
func traceWroteHeaderField(trace *clientTrace, k, v string) {
|
|
if trace != nil && trace.WroteHeaderField != nil {
|
|
trace.WroteHeaderField(k, []string{v})
|
|
}
|
|
}
|
|
|
|
func traceGot1xxResponseFunc(trace *clientTrace) func(int, textproto.MIMEHeader) error {
|
|
if trace != nil {
|
|
return trace.Got1xxResponse
|
|
}
|
|
return nil
|
|
}
|