Skip to content

Commit

Permalink
Benchmarks C,C++,Rust,Golang,Java,Python
Browse files Browse the repository at this point in the history
  • Loading branch information
xnuter committed Jan 19, 2021
1 parent e9e6b91 commit b6aafd6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/configuration.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ use crate::metrics::{DefaultConsoleReporter, ExternalMetricsServiceReporter};
use crate::prometheus_reporter::PrometheusReporter;
use clap::{clap_app, ArgMatches};
use core::fmt;
use serde::export::Formatter;
use std::net::SocketAddr;
use std::str::FromStr;
use std::sync::Arc;
Expand Down Expand Up @@ -206,7 +205,7 @@ impl BenchmarkConfig {
}

impl fmt::Display for BenchmarkConfig {
fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(
f,
"Mode={:?}, RateLadder={:?}, Concurrency={}",
Expand Down

0 comments on commit b6aafd6

Please sign in to comment.