From 6b75f7d42ec80ea623d45401bc2377004c90dbfa Mon Sep 17 00:00:00 2001 From: freeoneplus Date: Wed, 11 Dec 2024 12:10:53 +0800 Subject: [PATCH] add skip_check_ulimit config --- be/src/olap/storage_engine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/olap/storage_engine.cpp b/be/src/olap/storage_engine.cpp index e11394bd5415d4..05fc96c7f8d8a4 100644 --- a/be/src/olap/storage_engine.cpp +++ b/be/src/olap/storage_engine.cpp @@ -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) {