mirror of
https://github.com/scylladb/scylladb.git
synced 2026-04-28 04:06:59 +00:00
test: perf: fix format string for scheduling_latency_measurer
Need a colon to introduce the format after the default argument specifier. Found by fmt 8. Closes #9644
This commit is contained in:
@@ -47,11 +47,11 @@ std::ostream& operator<<(std::ostream& out, const scheduling_latency_measurer& s
|
||||
return float(nanos) / 1e6;
|
||||
};
|
||||
return out << fmt::format("{{count: {}, "
|
||||
//"min: {.6f} [ms], "
|
||||
//"50%: {.6f} [ms], "
|
||||
//"90%: {.6f} [ms], "
|
||||
"99%: {.6f} [ms], "
|
||||
"max: {.6f} [ms]}}",
|
||||
//"min: {:.6f} [ms], "
|
||||
//"50%: {:.6f} [ms], "
|
||||
//"90%: {:.6f} [ms], "
|
||||
"99%: {:.6f} [ms], "
|
||||
"max: {:.6f} [ms]}}",
|
||||
slm.histogram().count(),
|
||||
//to_ms(slm.min().count()),
|
||||
//to_ms(slm.histogram().percentile(0.5)),
|
||||
|
||||
Reference in New Issue
Block a user