File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
coprocessor/fhevm-engine/sns-worker/src Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -564,6 +564,8 @@ async fn fetch_pending_uploads(
564564 } else {
565565 error ! ( handle = hex:: encode( & handle) , "Missing ciphertext" ) ;
566566 }
567+ } else {
568+ error ! ( handle = hex:: encode( & handle) , "Failed to fetch ciphertext" ) ;
567569 }
568570 }
569571
@@ -589,6 +591,11 @@ async fn fetch_pending_uploads(
589591 } else {
590592 error ! ( handle = hex:: encode( & handle) , "Missing ciphertext128" ) ;
591593 }
594+ } else {
595+ error ! (
596+ handle = hex:: encode( & handle) ,
597+ "Failed to fetch ciphertext128"
598+ ) ;
592599 }
593600 }
594601
Original file line number Diff line number Diff line change @@ -225,8 +225,8 @@ async fn run_batch_computations(
225225 info ! ( elapsed = ?elapsed, batch_size, "Batch execution completed" ) ;
226226
227227 // Assert that all ciphertext128 objects are uploaded to S3
228- assert_ciphertext_s3_object_count ( test_env, bucket128, batch_size as i64 ) . await ;
229- assert_ciphertext_s3_object_count ( test_env, bucket64, batch_size as i64 ) . await ;
228+ assert_ciphertext_s3_object_count ( test_env, bucket128, 2 * batch_size as i64 ) . await ;
229+ assert_ciphertext_s3_object_count ( test_env, bucket64, 2 * batch_size as i64 ) . await ;
230230
231231 anyhow:: Result :: < ( ) > :: Ok ( ( ) )
232232}
You can’t perform that action at this time.
0 commit comments