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

Extend config interface to support setting retryServerErrors #439

Merged
merged 2 commits into from Jun 24, 2022

Commits on Jun 22, 2022

  1. Expose RetryServerErrors as a part of the config object.

    The client exposes a receiver method called RetryServerErrors which toggles a flag, c.retryServerErrors,
    that enables/disables the retry logic in the http client. This means however, you could only enable
    the retry logic once the client was created, meaning any failed metadata request in `NewClient()`
    would not be retried. We've extended the interface of the client config object to allow
    enabling `c.retryServerErrors` during client init `NewClient()`.
    sebasslash committed Jun 22, 2022
    Copy the full SHA
    fe750da View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2022

  1. Update Changelog

    sebasslash committed Jun 23, 2022
    Copy the full SHA
    8bf7b8e View commit details
    Browse the repository at this point in the history