Remove unnecessary conversions

This commit is contained in:
Michael Schurter 2018-03-16 16:32:59 -07:00
parent c3e8f6319c
commit 86f562be3a
1 changed files with 2 additions and 2 deletions

View File

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