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 4c4e726 commit edac46b
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 @@ -463,7 +463,7 @@ Status StorageEngine::_check_file_descriptor_number() {
<< ", use default configuration instead.";
return Status::OK();
}
if (getenv("SKIP_CHECK_ULIMIT") == "true") {
if (std::string(getenv("SKIP_CHECK_ULIMIT")) == "true") {
LOG(INFO) << "the ‘ulimit’ value check is skipped";
return Status::OK();
}
Expand Down

0 comments on commit edac46b

Please sign in to comment.