1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Update imports for logrus version

Add forks for changes which only make logrus change without functional
change.

Signed-off-by: Derek McGowan <derek@mcgstyle.net>
This commit is contained in:
Derek McGowan 2017-07-26 15:03:47 -07:00
parent 1009e6a40b
commit 4f3616fb1c
No known key found for this signature in database
GPG key ID: F58C5D0A4405ACDB
167 changed files with 915 additions and 516 deletions

View file

@ -7,7 +7,7 @@ import (
"sync/atomic"
"time"
"github.com/Sirupsen/logrus"
"github.com/sirupsen/logrus"
)
// RetryingSink retries the write until success or an ErrSinkClosed is
@ -90,7 +90,7 @@ func (rs *RetryingSink) Close() error {
return nil
}
func (rs RetryingSink) String() string {
func (rs *RetryingSink) String() string {
// Serialize a copy of the RetryingSink without the sync.Once, to avoid
// a data race.
rs2 := map[string]interface{}{