Updated node count to 230. Increased wmem on CI large
This commit is contained in:
@ -22,12 +22,22 @@ if [[ $(ulimit -n) -lt 65000 ]]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ $(sysctl -n net.core.rmem_default) -lt 1610612736 ]]; then
|
if [[ $(sysctl -n net.core.rmem_default) -lt 1610612736 ]]; then
|
||||||
echo 'Error: rmem_default too small, run "sysctl -w net.core.rmem_default 1610612736" to continue'
|
echo 'Error: rmem_default too small, run "sudo sysctl -w net.core.rmem_default 1610612736" to continue'
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ $(sysctl -n net.core.rmem_max) -lt 1610612736 ]]; then
|
if [[ $(sysctl -n net.core.rmem_max) -lt 1610612736 ]]; then
|
||||||
echo 'Error: rmem_max too small, run "sysctl -w net.core.rmem_max 1610612736" to continue'
|
echo 'Error: rmem_max too small, run "sudo sysctl -w net.core.rmem_max 1610612736" to continue'
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ $(sysctl -n net.core.wmem_default) -lt 1610612736 ]]; then
|
||||||
|
echo 'Error: rmem_default too small, run "sudo sysctl -w net.core.wmem_default 1610612736" to continue'
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ $(sysctl -n net.core.wmem_max) -lt 1610612736 ]]; then
|
||||||
|
echo 'Error: rmem_max too small, run "sudo sysctl -w net.core.wmem_max 1610612736" to continue'
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
2
tests/multinode.rs
Normal file → Executable file
2
tests/multinode.rs
Normal file → Executable file
@ -523,7 +523,7 @@ fn test_multi_node_dynamic_network() {
|
|||||||
Ok(val) => val
|
Ok(val) => val
|
||||||
.parse()
|
.parse()
|
||||||
.expect(&format!("env var {} is not parse-able as usize", key)),
|
.expect(&format!("env var {} is not parse-able as usize", key)),
|
||||||
Err(_) => 200,
|
Err(_) => 230,
|
||||||
};
|
};
|
||||||
|
|
||||||
let purge_key = "SOLANA_DYNAMIC_NODES_PURGE_LAG";
|
let purge_key = "SOLANA_DYNAMIC_NODES_PURGE_LAG";
|
||||||
|
Reference in New Issue
Block a user