Configure a real retry minimum of 1s
By default, retry-policies compute the actual retry duration as `min_retry_interval * (base ** n_past_retries) * rng.uniform(0.0, 1.0)`, so the first sleep duration would be between 0s and 1s. This change bumps this to a real 1s minimum.