Don't fail fetchKeys when server overloaded is returned
This commit is contained in:
parent
394b9dc619
commit
499dbcdb18
|
@ -4094,7 +4094,7 @@ ACTOR Future<Void> fetchKeys(StorageServer* data, AddingShard* shard) {
|
|||
} catch (Error& e) {
|
||||
if (e.code() != error_code_end_of_stream && e.code() != error_code_connection_failed &&
|
||||
e.code() != error_code_transaction_too_old && e.code() != error_code_future_version &&
|
||||
e.code() != error_code_process_behind) {
|
||||
e.code() != error_code_process_behind && e.code() != error_code_server_overloaded) {
|
||||
throw;
|
||||
}
|
||||
if (nfk == keys.begin) {
|
||||
|
|
Loading…
Reference in New Issue