From 5af074a365e9afdd5d6ae5e1892a630fe694605d Mon Sep 17 00:00:00 2001 From: Adarsh jaiswal Date: Thu, 14 Mar 2024 15:39:15 +0530 Subject: [PATCH] changed vendor files to its original state and then performed go mod vendor Signed-off-by: adarsh-jaiss --- vendor/contrib.go.opencensus.io/exporter/ocagent/.travis.yml | 4 ++-- vendor/github.com/hashicorp/go-multierror/README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/vendor/contrib.go.opencensus.io/exporter/ocagent/.travis.yml b/vendor/contrib.go.opencensus.io/exporter/ocagent/.travis.yml index 96fbc6408..f53103b1a 100644 --- a/vendor/contrib.go.opencensus.io/exporter/ocagent/.travis.yml +++ b/vendor/contrib.go.opencensus.io/exporter/ocagent/.travis.yml @@ -1,7 +1,7 @@ language: go go: - - 1.21.x + - 1.11.x go_import_path: contrib.go.opencensus.io/exporter/ocagent @@ -17,4 +17,4 @@ script: - if [ -n "$(gofmt -s -l $GO_FILES)" ]; then echo "gofmt the following files:"; gofmt -s -l $GO_FILES; exit 1; fi - go vet ./... - go test -v -race $PKGS # Run all the tests with the race detector enabled - - 'if [[ $TRAVIS_GO_VERSION = 1.21* ]]; then ! golint ./... | grep -vE "(_mock|_string|\.pb)\.go:"; fi' + - 'if [[ $TRAVIS_GO_VERSION = 1.8* ]]; then ! golint ./... | grep -vE "(_mock|_string|\.pb)\.go:"; fi' diff --git a/vendor/github.com/hashicorp/go-multierror/README.md b/vendor/github.com/hashicorp/go-multierror/README.md index 78f98a37b..71dd308ed 100644 --- a/vendor/github.com/hashicorp/go-multierror/README.md +++ b/vendor/github.com/hashicorp/go-multierror/README.md @@ -27,9 +27,9 @@ Install using `go get github.com/hashicorp/go-multierror`. Full documentation is available at https://pkg.go.dev/github.com/hashicorp/go-multierror -### Requires go version 1.21 or newer +### Requires go version 1.13 or newer -`go-multierror` requires go version 1.21 or newer. Initially, Go 1.13 introduced +`go-multierror` requires go version 1.13 or newer. Go 1.13 introduced [error wrapping](https://golang.org/doc/go1.13#error_wrapping), which this library takes advantage of.