ES-52: updated UpdateAction to act same as insert or gets for 'retryable server errors'

This commit is contained in:
Tim Chamberlain
2023-12-27 20:45:23 -06:00
parent 6c9506d18b
commit e841b37bce

View File

@ -1178,7 +1178,7 @@ public class BaseAPIActionUtil
*******************************************************************************/
protected boolean shouldBeRetryableServerErrorException(QHttpResponse qResponse)
{
if(actionInput instanceof QueryInput || actionInput instanceof GetInput)
if(actionInput instanceof QueryInput || actionInput instanceof GetInput || actionInput instanceof UpdateInput)
{
return (qResponse.getStatusCode() != null && qResponse.getStatusCode() >= 500);
}