Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
fix: add debug for spammer arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
gruberb committed Apr 11, 2024
1 parent a17b529 commit 244e3c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/topos-certificate-spammer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ pub async fn run(
) -> Result<(), Error> {
// Is list of nodes is specified in the command line use them otherwise use
// config file provided nodes
debug!("{:#?}", args);
let target_nodes = if args.benchmark {
if let (Some(target_hosts), Some(number)) = (args.target_hosts, args.number) {
let uri = target_hosts
Expand Down Expand Up @@ -341,7 +342,6 @@ pub async fn run(
batch.push(new_cert);
}

// Dispatch certs in this batch
// Dispatch certs in this batch
for cert in batch {
// Randomly choose target tce node for every certificate from related source_subnet_id connection list
Expand Down

0 comments on commit 244e3c7

Please sign in to comment.