mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #15261 from LK4D4/fix_fluentd_vendor
Fix vendoring for fluent-logger-golang
This commit is contained in:
commit
8d3bc4b98c
2 changed files with 3 additions and 2 deletions
|
@ -3,6 +3,7 @@ package fluent
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"io"
|
||||||
"math"
|
"math"
|
||||||
"net"
|
"net"
|
||||||
"reflect"
|
"reflect"
|
||||||
|
@ -33,7 +34,7 @@ type Config struct {
|
||||||
|
|
||||||
type Fluent struct {
|
type Fluent struct {
|
||||||
Config
|
Config
|
||||||
conn net.Conn
|
conn io.WriteCloser
|
||||||
pending []byte
|
pending []byte
|
||||||
reconnecting bool
|
reconnecting bool
|
||||||
mu sync.Mutex
|
mu sync.Mutex
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
package fluent
|
package fluent
|
||||||
|
|
||||||
const Version = "0.5.1"
|
const Version = "1.0.0"
|
||||||
|
|
Loading…
Reference in a new issue