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

13
vendor/github.com/modern-go/concurrent/log.go generated vendored Normal file
View file

@ -0,0 +1,13 @@
package concurrent
import (
"os"
"log"
"io/ioutil"
)
// ErrorLogger is used to print out error, can be set to writer other than stderr
var ErrorLogger = log.New(os.Stderr, "", 0)
// InfoLogger is used to print informational message, default to off
var InfoLogger = log.New(ioutil.Discard, "", 0)