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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]