Merge pull request #6273 from sfc-gh-etschannen/blob_integration

fix: do not report errors when the blob verifier is actor_cancelled
This commit is contained in:
Evan Tschannen 2022-01-21 12:06:34 -08:00 committed by GitHub
commit 966d9d9c15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -518,6 +518,9 @@ struct BlobGranuleVerifierWorkload : TestWorkload {
}
}
} catch (Error& e) {
if (e.code() == error_code_actor_cancelled) {
throw;
}
if (e.code() == error_code_end_of_stream) {
break;
}