Skip to content
Snippets Groups Projects
Commit ff42e65f authored by Florian Schmaus's avatar Florian Schmaus
Browse files

Merge branch 'fix-single-uring-stats' into 'master'

[io/Stats] don't try to print worker stats when using a single uring

See merge request !324
parents cbc942ab 6cb12a97
No related branches found
No related tags found
1 merge request!324[io/Stats] don't try to print worker stats when using a single uring
Pipeline #76749 passed
......@@ -125,6 +125,8 @@ void Stats::printStats(IoContext* globalIoContext, const std::vector<IoContext*>
out << globalIoContext->getStats();
}
if constexpr (emper::IO_SINGLE_URING) return;
// Use a stats object to calculate the averages
Stats avgs;
// mark as averages
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment