mirror of
https://github.com/nosqlbench/nosqlbench.git
synced 2025-02-25 18:55:28 -06:00
fix high-centered changes after merge
This commit is contained in:
parent
98ad978063
commit
14859b09cb
@ -240,13 +240,12 @@ public class ThreadDrivenTokenPool implements TokenPool {
|
|||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return String.format(
|
return String.format(
|
||||||
"{ active:%d, max:%d, fill:'(%,3.1f%%)A (%,3.1f%%)B', wait_ns:%,d, blocks:%,d, notifies:%,d}",
|
"{ active:%d, max:%d, fill:'(%,3.1f%%)A (%,3.1f%%)B', wait_ns:%,d, blocks:%,d }",
|
||||||
activePool, maxActivePool,
|
activePool, maxActivePool,
|
||||||
(((double) activePool / (double) maxActivePool) * 100.0),
|
(((double) activePool / (double) maxActivePool) * 100.0),
|
||||||
(((double) activePool / (double) maxOverActivePool) * 100.0),
|
(((double) activePool / (double) maxOverActivePool) * 100.0),
|
||||||
waitingPool,
|
waitingPool,
|
||||||
blocks,
|
blocks
|
||||||
notifies
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user