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 e438605 commit ec79233Copy full SHA for ec79233
integration-test/tests/multi.rs
@@ -85,7 +85,15 @@ async fn track_blocks() {
85
delay_for(Duration::from_secs(1)).await;
86
}
87
88
- for i in 0..4 {
89
- assert!(get_latest_block(GRAPHQL_PORT_BASE + i).await >= start_block + 8)
+ for _ in 0..60 {
+ delay_for(Duration::from_secs(1)).await;
90
+ let mut success = true;
91
+ for i in 0..4 {
92
+ success = success && get_latest_block(GRAPHQL_PORT_BASE + i).await >= start_block + 8;
93
+ }
94
+ if success {
95
+ return
96
97
98
+ panic!("Failed to sync 4 nodes")
99
0 commit comments