mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
vendor: update go-events to fix alignment for 32bit systems
- relates to moby/buildkit 1111
- relates to moby/buildkit 1079
- relates to docker/buildx 129
full diff: 9461782956...e31b211e4f
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
846b557cb8
commit
e7183dbfe9
2 changed files with 2 additions and 2 deletions
|
@ -40,7 +40,7 @@ github.com/gofrs/flock 392e7fae8f1b0bdbd67dad7237d2
|
||||||
|
|
||||||
# When updating, also update LIBNETWORK_COMMIT in hack/dockerfile/install/proxy.installer accordingly
|
# When updating, also update LIBNETWORK_COMMIT in hack/dockerfile/install/proxy.installer accordingly
|
||||||
github.com/docker/libnetwork ef149a924dfde2e506ea3cb3f617d7d0fa96b8ee
|
github.com/docker/libnetwork ef149a924dfde2e506ea3cb3f617d7d0fa96b8ee
|
||||||
github.com/docker/go-events 9461782956ad83b30282bf90e31fa6a70c255ba9
|
github.com/docker/go-events e31b211e4f1cd09aa76fe4ac244571fab96ae47f
|
||||||
github.com/armon/go-radix e39d623f12e8e41c7b5529e9a9dd67a1e2261f80
|
github.com/armon/go-radix e39d623f12e8e41c7b5529e9a9dd67a1e2261f80
|
||||||
github.com/armon/go-metrics eb0af217e5e9747e41dd5303755356b62d28e3ec
|
github.com/armon/go-metrics eb0af217e5e9747e41dd5303755356b62d28e3ec
|
||||||
github.com/hashicorp/go-msgpack 71c2886f5a673a35f909803f38ece5810165097b
|
github.com/hashicorp/go-msgpack 71c2886f5a673a35f909803f38ece5810165097b
|
||||||
|
|
2
vendor/github.com/docker/go-events/retry.go
generated
vendored
2
vendor/github.com/docker/go-events/retry.go
generated
vendored
|
@ -203,8 +203,8 @@ type ExponentialBackoffConfig struct {
|
||||||
// ExponentialBackoff implements random backoff with exponentially increasing
|
// ExponentialBackoff implements random backoff with exponentially increasing
|
||||||
// bounds as the number consecutive failures increase.
|
// bounds as the number consecutive failures increase.
|
||||||
type ExponentialBackoff struct {
|
type ExponentialBackoff struct {
|
||||||
|
failures uint64 // consecutive failure counter (needs to be 64-bit aligned)
|
||||||
config ExponentialBackoffConfig
|
config ExponentialBackoffConfig
|
||||||
failures uint64 // consecutive failure counter.
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewExponentialBackoff returns an exponential backoff strategy with the
|
// NewExponentialBackoff returns an exponential backoff strategy with the
|
||||||
|
|
Loading…
Add table
Reference in a new issue