injected faults should be retryable errors in blob worker

This commit is contained in:
Hui Liu 2022-09-29 16:47:31 -07:00
parent 03f1d13be3
commit 01d7668fd1
1 changed files with 1 additions and 0 deletions

View File

@ -1603,6 +1603,7 @@ bool granuleCanRetry(const Error& e) {
case error_code_http_request_failed:
case error_code_connection_failed:
case error_code_lookup_failed: // dns
case error_code_platform_error: // injected faults
return true;
default:
return false;