@@ -434,14 +434,16 @@ TritonParser::SetupOptions()
434
434
#endif // TRITON_ENABLE_HTTP
435
435
436
436
#if defined(TRITON_ENABLE_GRPC)
437
- grpc_options_.push_back ({OPTION_ALLOW_GRPC, " allow-grpc" , Option::ArgBool,
438
- " Allow the server to listen for GRPC requests." });
437
+ grpc_options_.push_back (
438
+ {OPTION_ALLOW_GRPC, " allow-grpc" , Option::ArgBool,
439
+ " Allow the server to listen for GRPC requests." });
439
440
grpc_options_.push_back (
440
441
{OPTION_GRPC_ADDRESS, " grpc-address" , Option::ArgStr,
441
442
" The address for the grpc server to binds to. Default is 0.0.0.0" });
442
- grpc_options_.push_back ({OPTION_GRPC_PORT, " grpc-port" , Option::ArgInt,
443
- " The port for the server to listen on for GRPC "
444
- " requests. Default is 8001." });
443
+ grpc_options_.push_back (
444
+ {OPTION_GRPC_PORT, " grpc-port" , Option::ArgInt,
445
+ " The port for the server to listen on for GRPC "
446
+ " requests. Default is 8001." });
445
447
grpc_options_.push_back (
446
448
{OPTION_REUSE_GRPC_PORT, " reuse-grpc-port" , Option::ArgBool,
447
449
" Allow multiple servers to listen on the same GRPC port when every "
@@ -2052,8 +2054,7 @@ TritonParser::SetTritonTraceArgs(
2052
2054
bool trace_log_frequency_present)
2053
2055
{
2054
2056
for (const auto & mode_setting :
2055
- lparams
2056
- .trace_config_map_ [std::to_string (TRACE_MODE_TRITON)]) {
2057
+ lparams.trace_config_map_ [std::to_string (TRACE_MODE_TRITON)]) {
2057
2058
if (mode_setting.first == " file" ) {
2058
2059
if (trace_filepath_present) {
2059
2060
std::cerr << " Warning: Overriding deprecated '--trace-file' "
0 commit comments