jihuayu commented on PR #3372:
URL: https://github.com/apache/kvrocks/pull/3372#issuecomment-4043389021
The clang-format version used in CI is 18.1.3; it might be this issue. I’ll
look into it. You can use this code to make CI pass first.
```C++
static void PrintUsage(const char *program, std::ostream &os = std::cout) {
os << program << " implements the Redis protocol based on RocksDB" <<
std::endl
<< "Usage:" << std::endl
<< std::left << new_opt << "-c, --config <filename>" << "set config
file to <filename>, or `-` for stdin"
<< std::endl
<< new_opt << "-v, --version" << "print version information" <<
std::endl
<< new_opt << "-h, --help" << "print this help message" << std::endl
<< new_opt << "--<config-key> <config-value>" << "overwrite specific
config option <config-key> to <config-value>"
<< std::endl;
}
```
--
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]