We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
--rpc-max-response-size
1 parent ce7c011 commit 01ea298Copy full SHA for 01ea298
1 file changed
core/tests/follow_chain.rs
@@ -35,6 +35,9 @@ async fn follow_chain_works() {
35
"--no-hardware-benchmarks",
36
"--dev",
37
format!("--rpc-port={}", port).as_str(),
38
+ "--no-telemetry",
39
+ "--no-prometheus",
40
+ "--rpc-max-response-size=1000", // Allow large RPC responses for snapshot creation
41
]) {
42
Ok(_) => {}
43
Err(e) => {
@@ -43,7 +46,7 @@ async fn follow_chain_works() {
46
}
44
47
});
45
48
// Wait some time to ensure the node is warmed up.
- std::thread::sleep(Duration::from_secs(90));
49
+ std::thread::sleep(Duration::from_secs(180));
50
51
common::run_with_timeout(Duration::from_secs(60), async move {
52
fn start_follow(ws_url: &str) -> tokio::process::Child {
0 commit comments