Skip to main content
Version: 2.3.0

Retry Logic

Retrying Requests​

If an execution fails with a potentially recoverable server error, the request will be re-attempted.

Two properties in config.json control the behavior when running tests.

note

Attempts to leverage a higher value than those max values described below are denied -- and the max value will be leveraged.

Retry Count​

The count represents how many times to attempt a retry, if the request was a Server Error.

The maximum count is 4. Default is 2.

Retry Sleep Seconds​

When re-attempting a request, the subsequent request will be slept for a specified duration; the retry_seconds_s.

The maximum duration is 30s. Default is 5s.