Skip to content

Commit

Permalink
do not use port number used by autostarted registry (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
VJonasHolley authored Sep 26, 2024
1 parent 089d8df commit 8248164
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Demos/Benchmark/BenchmarkDemo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ void PrintUsage(const std::string& executableName)
<< " [registryURi]" << std::endl
<< "If no arguments are given, default values will be used." << std::endl
<< "\t--help\tshow this message." << std::endl
<< "\t--registry-uri\tThe URI of the registry to start. Default: silkit://localhost:8500" << std::endl
<< "\t--registry-uri\tThe URI of the registry to start. Default: silkit://localhost:8600" << std::endl
<< "\t--message-size\tSets the message size to BYTES. Default: 1000" << std::endl
<< "\t--message-count\tSets the number of messages to be send per participant in each simulation step to "
"NUM. Default: 50"
Expand All @@ -83,7 +83,7 @@ struct BenchmarkConfig
uint32_t numberOfParticipants = 2;
uint32_t messageCount = 50;
uint32_t messageSizeInBytes = 1000;
std::string registryUri = "silkit://localhost:8500";
std::string registryUri = "silkit://localhost:8600";
std::string silKitConfigPath = "";
std::string writeCsv = "";
};
Expand Down

0 comments on commit 8248164

Please sign in to comment.