Remove unnecessary conversions

This commit is contained in:
Michael Schurter
2018-03-16 16:32:59 -07:00
parent 16538f6474
commit 5aff4dddfd

View File

@@ -32,7 +32,7 @@ func checkConsulTLSSkipVerify(ctx context.Context, logger *log.Logger, client Ag
return
}
backoff := (1 << (2 * uint64(i))) * baseline
backoff := (1 << (2 * i)) * baseline
if backoff > limit {
backoff = limit
} else {
@@ -42,7 +42,7 @@ func checkConsulTLSSkipVerify(ctx context.Context, logger *log.Logger, client Ag
select {
case <-ctx.Done():
return
case <-time.After(time.Duration(backoff)):
case <-time.After(backoff):
}
}
}