Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(retries): change default retry_interval to 1 second (was 0.1) #122

Merged
merged 1 commit into from
Aug 20, 2021

Commits on Aug 20, 2021

  1. fix(retries): change default retry_interval to 1 second (was 0.1)

    This commit changes the default value of the retry_interval
    parameter (in the BaseService.enable_retries method) from 0.1
    to 1.0.   This will result in default retry intervals
    of 1, 2, 4, 8, ... seconds instead of 0.1, 0.2, 0.4, 0.8, ... seconds.
    This change will align the python core retry support with Go.
    Also added some detailed info in the docstring for the method as well.
    padamstx committed Aug 20, 2021
    Configuration menu
    Copy the full SHA
    96412af View commit details
    Browse the repository at this point in the history