commit | 8697152e7055b2d2e90ee36874ee40173096af41 | [log] [tgz] |
---|---|---|
author | David Bainbridge <dbainbri@ciena.com> | Thu Sep 26 22:09:39 2019 +0000 |
committer | David Bainbridge <dbainbri@ciena.com> | Tue Oct 01 23:13:54 2019 +0000 |
tree | 07829c946bf8aba8142e5c4f6381add66f29e75e | |
parent | c4029aa227893ee63ef8db30893d0569c28c7046 [diff] [blame] |
VOL-1917 move to go mod Change-Id: Ia8de8bd8a4f4d908cc1fa745f6f4ec949629017b
diff --git a/vendor/k8s.io/client-go/util/flowcontrol/backoff.go b/vendor/k8s.io/client-go/util/flowcontrol/backoff.go index b7cb70e..39cd72f 100644 --- a/vendor/k8s.io/client-go/util/flowcontrol/backoff.go +++ b/vendor/k8s.io/client-go/util/flowcontrol/backoff.go
@@ -99,7 +99,7 @@ if hasExpired(eventTime, entry.lastUpdate, p.maxDuration) { return false } - return p.Clock.Now().Sub(eventTime) < entry.backoff + return p.Clock.Since(eventTime) < entry.backoff } // Returns True if time since lastupdate is less than the current backoff window.