From ef7bb7242f1155f7c87912d154a0493a36f23bb0 Mon Sep 17 00:00:00 2001 From: Alexander Morozov Date: Mon, 3 Aug 2015 10:23:47 -0700 Subject: [PATCH] Fix vendoring for fluent-logger-golang Signed-off-by: Alexander Morozov --- .../github.com/fluent/fluent-logger-golang/fluent/fluent.go | 3 ++- .../github.com/fluent/fluent-logger-golang/fluent/version.go | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/vendor/src/github.com/fluent/fluent-logger-golang/fluent/fluent.go b/vendor/src/github.com/fluent/fluent-logger-golang/fluent/fluent.go index f746c51266..ce65cae639 100644 --- a/vendor/src/github.com/fluent/fluent-logger-golang/fluent/fluent.go +++ b/vendor/src/github.com/fluent/fluent-logger-golang/fluent/fluent.go @@ -3,6 +3,7 @@ package fluent import ( "errors" "fmt" + "io" "math" "net" "reflect" @@ -33,7 +34,7 @@ type Config struct { type Fluent struct { Config - conn net.Conn + conn io.WriteCloser pending []byte reconnecting bool mu sync.Mutex diff --git a/vendor/src/github.com/fluent/fluent-logger-golang/fluent/version.go b/vendor/src/github.com/fluent/fluent-logger-golang/fluent/version.go index 4ee1555799..135e1e51af 100644 --- a/vendor/src/github.com/fluent/fluent-logger-golang/fluent/version.go +++ b/vendor/src/github.com/fluent/fluent-logger-golang/fluent/version.go @@ -1,3 +1,3 @@ package fluent -const Version = "0.5.1" +const Version = "1.0.0"