Don't fail fetchKeys when server overloaded is returned

This commit is contained in:
Daniel Smith 2021-11-10 14:15:42 -05:00
parent 394b9dc619
commit 499dbcdb18
1 changed files with 1 additions and 1 deletions

View File

@ -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) {