Skip to content

Commit

Permalink
Fix default flag value
Browse files Browse the repository at this point in the history
Co-authored-by: Lawrence Mitchell <[email protected]>
  • Loading branch information
pentschev and wence- authored Jul 25, 2024
1 parent f6bb973 commit 47fc8ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/benchmarks/perftest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ static void printUsage()
std::cerr << " 'thread-polling' and 'thread-blocking' (default: 'blocking')"
<< std::endl;
std::cerr << " -t use thread progress mode (disabled)" << std::endl;
std::cerr << " -e create endpoints with error handling support (false)" << std::endl;
std::cerr << " -e create endpoints with error handling support (disabled)" << std::endl;
std::cerr << " -p <port> port number to listen at (12345)" << std::endl;
std::cerr << " -s <bytes> message size (8)" << std::endl;
std::cerr << " -n <int> number of iterations to run (100)" << std::endl;
Expand Down Expand Up @@ -190,7 +190,7 @@ ucs_status_t parseCommand(app_context_t* app_context, int argc, char* const argv
return UCS_ERR_INVALID_PARAM;
}
break;
case 'e': app_context->endpoint_error_handling = false; break;
case 'e': app_context->endpoint_error_handling = true; break;
case 'r': app_context->reuse_alloc = true; break;
case 'v': app_context->verify_results = true; break;
case 'h':
Expand Down

0 comments on commit 47fc8ce

Please sign in to comment.