We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d6dddb commit 639ffefCopy full SHA for 639ffef
aggregation_mode/proof_aggregator/src/backend/mod.rs
@@ -144,7 +144,9 @@ impl ProofAggregator {
144
Err(err) => {
145
error!("Error while aggregating and submitting proofs: {:?}", err);
146
warn!("Marking tasks back to pending after failure");
147
- self.db.mark_tasks_as_pending(&tasks_id).await;
+ if let Err(e) = self.db.mark_tasks_as_pending(&tasks_id).await {
148
+ error!("Error while marking proofs to pending again: {:?}", e);
149
+ };
150
}
151
152
0 commit comments