mirror of https://github.com/docker/docs.git
Fix vendoring for fluent-logger-golang
Signed-off-by: Alexander Morozov <lk4d4@docker.com>
This commit is contained in:
parent
b9aaf8c758
commit
ef7bb7242f
|
@ -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 New Issue