Ran go fmt so tests would pass

Signed-off-by: Michael Wyrick <Michael.Wyrick@caci.com>
This commit is contained in:
Michael Wyrick 2021-12-28 10:42:37 -05:00
parent fd4c3350ae
commit 1324428a9a

View File

@ -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
}
}