Skip to content

1.2.0

Compare
Choose a tag to compare
@bdemers bdemers released this 02 Jul 17:20
· 571 commits to master since this release
okta-sdk-root-1.2.0
  • Add new RequestBuilder interface to allow GET, POST, PUT, and DELETE, see: client.http()

  • Updated retry logic to better handle 429 responses, configuration

    • okta.client.requestTimeout: number of seconds to wait to retry multiple requests (defaults to 0)
    • okta.client.rateLimit.maxRetries: Max number of retry attempts to make before failing (defaults to 4)

    Retry logic can be disabled by setting both values to 0. Any value > 0 will enable the behavior.
    NOTE: If okta.client.requestTimeout is set to 30 and okta.client.rateLimit.maxRetries to 0, an unlimited number of retry attempts will be made in this 30 second window.