github-actions[bot] commented on code in PR #45267: URL: https://github.com/apache/doris/pull/45267#discussion_r1879218400
########## be/src/olap/storage_engine.cpp: ########## @@ -463,6 +463,10 @@ Status StorageEngine::_check_file_descriptor_number() { << ", use default configuration instead."; return Status::OK(); } + if (static_cast<bool>(getenv("SKIP_CHECK_ULIMIT")) == true) { Review Comment: warning: redundant boolean literal supplied to boolean operator [readability-simplify-boolean-expr] ```suggestion if (getenv("SKIP_CHECK_ULIMIT") != nullptr) { ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org