Skip to content

Commit

Permalink
add skip_check_ulimit config
Browse files Browse the repository at this point in the history
  • Loading branch information
FreeOnePlus committed Dec 11, 2024
1 parent 744f997 commit 6b75f7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion be/src/olap/storage_engine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ Status StorageEngine::_check_file_descriptor_number() {
}
if (std::string(getenv("SKIP_CHECK_ULIMIT")) == "true") {
LOG(INFO) << "the ‘ulimit’ value check is skipped"
<< ", the SKIP_CHECK_ULIMIT env value is " << getenv("SKIP_CHECK_ULIMIT");
<< ", the SKIP_CHECK_ULIMIT env value is " << getenv("SKIP_CHECK_ULIMIT");
return Status::OK();
}
if (l.rlim_cur < config::min_file_descriptor_number) {
Expand Down

0 comments on commit 6b75f7d

Please sign in to comment.