Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
977da03
Increase delay for pov-recovery
skunert Jan 25, 2023
dbef277
Update client/service/src/lib.rs
skunert Jan 25, 2023
72e7646
Comment
skunert Jan 25, 2023
190b012
FMT
skunert Jan 27, 2023
2278719
Merge branch 'master' into skunert/pov-recovery-increase-delay
skunert Jan 27, 2023
b63782f
Clear waiting_recovery when block is recovered or recovery failed
skunert Jan 31, 2023
3c660da
Introduce recovery queue that preserved insertion order
skunert Jan 31, 2023
8eaec6d
Better error logs
skunert Jan 31, 2023
8da6d8c
Decrease slot duration
skunert Feb 1, 2023
993dba5
Style improvements
skunert Feb 2, 2023
bfbae02
Add option to use unordered queue
skunert Feb 2, 2023
1139b80
Maintain cache of finalized blocks
skunert Feb 3, 2023
18e63a5
Wait for one relay chain slot before recovery
skunert Feb 3, 2023
c3ae356
Make retries testable
skunert Feb 3, 2023
508bee6
fmt
skunert Feb 3, 2023
d40ff11
Improve docs
skunert Feb 3, 2023
be9d523
Improve docs
skunert Feb 6, 2023
2bf0824
Simplify RecoveryQueue
skunert Feb 6, 2023
f744bec
Remove unwanted changes
skunert Feb 6, 2023
92c582b
Merge branch 'master' into skunert/experimental-pov-changes
skunert Feb 6, 2023
2512d09
Adjust to comments
skunert Feb 6, 2023
2af35d9
Apply suggestions from code review
skunert Feb 7, 2023
70ab63b
Move recovery delay into the queue
skunert Feb 8, 2023
0da8638
Check for finalized number
skunert Feb 8, 2023
6f0d8ef
Clean up
skunert Feb 8, 2023
3809eed
Use timer
skunert Feb 9, 2023
5bf500a
Simplify implementation
skunert Feb 8, 2023
49710ce
Revert "Use timer"
skunert Feb 9, 2023
78ccb2a
Properly clear `to_recover` flag
skunert Feb 9, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
FMT
  • Loading branch information
skunert committed Jan 27, 2023
commit 190b012607f5a9fcb994ecd1ff04f7217d474c98
5 changes: 1 addition & 4 deletions client/service/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,7 @@ where
// We want that collators wait at maximum the relay chain slot duration before starting
// to recover blocks. Additionally, we wait at least half the slot time to give the
// relay chain the chance to increase availability.
RecoveryDelay {
min: relay_chain_slot_duration / 2,
max: relay_chain_slot_duration,
},
RecoveryDelay { min: relay_chain_slot_duration / 2, max: relay_chain_slot_duration },
client.clone(),
import_queue,
relay_chain_interface.clone(),
Expand Down