Vendor update with github.com/ugorji/go and github.com/apache/thrift pinning (#1805)

This fix is an vendor update. Both ugorji and thrift have to be pinned
to compile. The ugorji is from etcd and thrift is from zipkin.

This fix fixes #1802.

Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
This commit is contained in:
Yong Tang 2018-05-16 14:19:53 -07:00 committed by Miek Gieben
parent 1e471a353e
commit 05a030e17b
10682 changed files with 37458 additions and 4048068 deletions

12
vendor/github.com/modern-go/concurrent/test.sh generated vendored Executable file
View file

@ -0,0 +1,12 @@
#!/usr/bin/env bash
set -e
echo "" > coverage.txt
for d in $(go list ./... | grep -v vendor); do
go test -coverprofile=profile.out -coverpkg=github.com/modern-go/concurrent $d
if [ -f profile.out ]; then
cat profile.out >> coverage.txt
rm profile.out
fi
done