Skip to content

Commit 4caf548

Browse files
committed
fix typo.
1 parent 0c9a3a8 commit 4caf548

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pgopttune/recovery/pg_recovery.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def estimate_check_point_parameters(self):
5757
checkpoint_timeout_estimate_second = self.estimate_use_linear_regression(self.x_recovery_time,
5858
self.measurement_second_array,
5959
self.required_recovery_time_second)
60-
checkpoint_timeout_estimate_min = str(math.floor(checkpoint_timeout_estimate_second / 60)) + 'm'
60+
checkpoint_timeout_estimate_min = str(math.floor(checkpoint_timeout_estimate_second / 60)) + 'min'
6161
logger.info("The value of checkpoint_timeout estimated based on the measured values is {}.".format(
6262
checkpoint_timeout_estimate_min))
6363
return estimate_max_wal_size_mb, checkpoint_timeout_estimate_min

0 commit comments

Comments
 (0)