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"