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 @@ -559,6 +559,8 @@ async fn fetch_pending_uploads(
559559 } else {
560560 error ! ( handle = hex:: encode( & handle) , "Missing ciphertext" ) ;
561561 }
562+ } else {
563+ warn ! ( handle = hex:: encode( & handle) , "Failed to fetch ciphertext" ) ;
562564 }
563565 }
564566
@@ -584,6 +586,11 @@ async fn fetch_pending_uploads(
584586 } else {
585587 error ! ( handle = hex:: encode( & handle) , "Missing ciphertext128" ) ;
586588 }
589+ } else {
590+ warn ! (
591+ handle = hex:: encode( & handle) ,
592+ "Failed to fetch ciphertext128"
593+ ) ;
587594 }
588595 }
589596
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