Description
The PHP SDK does not retry if the API returns non-2xx and 3xx; 413 is also not an exception
This SDK only retries if there's no connection, timeouts, or network failures
The reason is that the PHP SDK is single-threaded and would slow down the hosting app if the API has outages, etc
For any of those cases, the SDK delivery is best effort and may have data loss
We can do this when we implement #170
Description
The PHP SDK does not retry if the API returns non-2xx and 3xx; 413 is also not an exception
This SDK only retries if there's no connection, timeouts, or network failures
The reason is that the PHP SDK is single-threaded and would slow down the hosting app if the API has outages, etc
For any of those cases, the SDK delivery is best effort and may have data loss
We can do this when we implement #170