This repository was archived by the owner on May 3, 2022. It is now read-only.
This repository was archived by the owner on May 3, 2022. It is now read-only.
Allow Retries for Write Operations #4
Open
Description
The allowRetries
option currently only applies OPTIONS
, GET
, DELETE
and HEAD
(see RetryableHttpVerbs
since those operations are idempotent by default. This is a good default and avoids any unintended side effects.
There should be an option for the client to specify allowing retries for specific write operations (PUT
and POST
) if the client knows they are idempotent.