mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 19:51:02 +00:00
Add retry mechanism for pov-recovery, fix full-node pov-recovery (#2164)
* Increase delay for pov-recovery * Update client/service/src/lib.rs Co-authored-by: Bastian Köcher <git@kchr.de> * Comment * FMT * Clear waiting_recovery when block is recovered or recovery failed * Introduce recovery queue that preserved insertion order * Better error logs * Decrease slot duration * Style improvements * Add option to use unordered queue * Maintain cache of finalized blocks * Wait for one relay chain slot before recovery * Make retries testable * fmt * Improve docs * Improve docs * Simplify RecoveryQueue * Remove unwanted changes * Adjust to comments * Apply suggestions from code review Co-authored-by: Bastian Köcher <git@kchr.de> * Move recovery delay into the queue * Check for finalized number * Clean up * Use timer Co-authored-by: Bastian Köcher <git@kchr.de> * Simplify implementation * Revert "Use timer" This reverts commit 3809eed840d3a09d54212f99486782ff80cdc1c9. * Properly clear `to_recover` flag --------- Co-authored-by: Bastian Köcher <git@kchr.de>
This commit is contained in:
@@ -12,9 +12,10 @@ bob: is up within 60 seconds
|
||||
charlie: is up within 60 seconds
|
||||
one: is up within 60 seconds
|
||||
two: is up within 60 seconds
|
||||
eve: is up within 60 seconds
|
||||
|
||||
# wait 30 blocks and register parachain
|
||||
validator-3: reports block height is at least 30 within 250 seconds
|
||||
# wait 20 blocks and register parachain
|
||||
validator-3: reports block height is at least 20 within 250 seconds
|
||||
validator-0: js-script ./register-para.js with "2000" within 240 seconds
|
||||
validator-0: parachain 2000 is registered within 300 seconds
|
||||
|
||||
@@ -22,5 +23,6 @@ validator-0: parachain 2000 is registered within 300 seconds
|
||||
bob: reports block height is at least 20 within 600 seconds
|
||||
alice: reports block height is at least 20 within 600 seconds
|
||||
charlie: reports block height is at least 20 within 600 seconds
|
||||
one: reports block height is at least 20 within 600 seconds
|
||||
two: reports block height is at least 20 within 600 seconds
|
||||
one: reports block height is at least 20 within 800 seconds
|
||||
two: reports block height is at least 20 within 800 seconds
|
||||
eve: reports block height is at least 20 within 800 seconds
|
||||
|
||||
Reference in New Issue
Block a user