From d2b5e7db08ac70ae3ae640078022666496ed8253 Mon Sep 17 00:00:00 2001 From: Michael Wyrick Date: Tue, 28 Dec 2021 10:42:37 -0500 Subject: [PATCH] Ran go fmt so tests would pass --- plugins/ipam/dhcp/lease.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/ipam/dhcp/lease.go b/plugins/ipam/dhcp/lease.go index e36b768e5..214e26ff2 100644 --- a/plugins/ipam/dhcp/lease.go +++ b/plugins/ipam/dhcp/lease.go @@ -455,7 +455,7 @@ func backoffRetry(resendMax time.Duration, f func() (*dhcp4.Packet, error)) (*dh // only adjust delay time if we are in normal backoff stage if baseDelay < resendMax && fastRetryLimit == 0 { baseDelay *= 2 - } else if fastRetryLimit == 0 { // only break if we are at normal delay + } else if fastRetryLimit == 0 { // only break if we are at normal delay break } }