Skip to content

Commit

Permalink
Fix report of PhasedUpdate interval in configuration dump
Browse files Browse the repository at this point in the history
  • Loading branch information
kdnilsen committed Nov 16, 2022
1 parent 1df83ca commit 880afc7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1130,7 +1130,7 @@ void dump(ExtrememThread t) {
Report.output(" Fine-grain locking of data base (FastAndFurious): ", FastAndFurious? "true": "false");
Report.output(" Rebuild data base in phases (PhasedUpdates): ", PhasedUpdates? "true": "false");
Report.output();
s = PhasedUpdateInterval.toString();
s = PhasedUpdateInterval.toString(t);
l = s.length();
Util.ephemeralString(t, l);
Report.output(" Time between data rebuild (PhasedUpdateInterval): ", s);
Expand Down

0 comments on commit 880afc7

Please sign in to comment.