Skip to content

Commit

Permalink
Print units for configuration of PhasedUpdateInterval
Browse files Browse the repository at this point in the history
  • Loading branch information
kdnilsen committed Aug 18, 2022
1 parent 72a9b1d commit 139ed30
Showing 1 changed file with 1 addition and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -988,12 +988,6 @@ void dumpCSV(ExtrememThread t) {
Report.output("ServerPeriod,", s);
Util.abandonEphemeralString(t, l);

s = Long.toString(PhasedUpdateInterval.microseconds());
l = s.length();
Util.ephemeralString(t, l);
Report.output("PhasedUpdateInterval,", s);
Util.abandonEphemeralString(t, l);

Report.output("Customer maintenance");

s = Long.toString(CustomerReplacementPeriod.microseconds());
Expand Down Expand Up @@ -1136,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 = Long.toString(PhasedUpdateInterval.microseconds());
s = PhasedUpdateInterval.toString();
l = s.length();
Util.ephemeralString(t, l);
Report.output(" Time between data rebuild (PhasedUpdateInterval): ", s);
Expand Down Expand Up @@ -1206,11 +1200,6 @@ void dump(ExtrememThread t) {
Report.output(" Server thread period (ServerPeriod): ", s);
Util.abandonEphemeralString(t, l);

s = PhasedUpdateInterval.toString(t);
l = s.length();
Report.output(" Phased update interval (PhasedUpdateInterval): ", s);
Util.abandonEphemeralString(t, l);

Report.output("Customer maintenance");

s = CustomerReplacementPeriod.toString(t);
Expand Down

0 comments on commit 139ed30

Please sign in to comment.