Skip to content

Commit

Permalink
Fix verifier total query count when using repetition
Browse files Browse the repository at this point in the history
  • Loading branch information
Quang Pham authored and electrum committed Oct 24, 2018
1 parent 445a0dc commit 7cd0137
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -77,7 +77,7 @@ public int run(List<QueryPair> queries)
ExecutorService executor = newFixedThreadPool(threadCount);
CompletionService<Validator> completionService = new ExecutorCompletionService<>(executor);

int totalQueries = queries.size() * config.getSuiteRepetitions();
int totalQueries = queries.size() * config.getSuiteRepetitions() * config.getQueryRepetitions();
log.info("Total Queries: %d", totalQueries);

log.info("Whitelisted Queries: %s", Joiner.on(',').join(whitelist));
Expand Down

0 comments on commit 7cd0137

Please sign in to comment.