Don't enforce ulimit for validator test config (#24272)

This commit is contained in:
sakridge
2022-04-12 22:06:37 +02:00
committed by GitHub
parent 6b611e1c52
commit 7a4a6597c0

View File

@ -231,6 +231,7 @@ impl Default for ValidatorConfig {
impl ValidatorConfig {
pub fn default_for_test() -> Self {
Self {
enforce_ulimit_nofile: false,
rpc_config: JsonRpcConfig::default_for_test(),
..Self::default()
}