From a807f56ab537a45b7bcc1570dd4217a64775c640 Mon Sep 17 00:00:00 2001 From: Daniel Nichter Date: Mon, 7 Nov 2011 10:33:21 -0700 Subject: [PATCH] Add newline to --max-load progress message. --- bin/pt-table-checksum | 3 ++- lib/MySQLStatusWaiter.pm | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/bin/pt-table-checksum b/bin/pt-table-checksum index 350f82bf..a1e0256a 100755 --- a/bin/pt-table-checksum +++ b/bin/pt-table-checksum @@ -5362,7 +5362,8 @@ sub wait { . (defined $vals_too_high{$_} ? $vals_too_high{$_} : 'unknown') } sort keys %vals_too_high - ); + ) + . ".\n"; return; }; $pr->set_callback($pr_callback); diff --git a/lib/MySQLStatusWaiter.pm b/lib/MySQLStatusWaiter.pm index c672908b..86680d84 100644 --- a/lib/MySQLStatusWaiter.pm +++ b/lib/MySQLStatusWaiter.pm @@ -131,7 +131,8 @@ sub wait { . (defined $vals_too_high{$_} ? $vals_too_high{$_} : 'unknown') } sort keys %vals_too_high - ); + ) + . ".\n"; return; }; $pr->set_callback($pr_callback);