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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

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()
}