summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <df@kahlann.erinye.com>2006-11-30 13:16:12 +0100
committerunknown <df@kahlann.erinye.com>2006-11-30 13:16:12 +0100
commit5af42c1b25c72ca16bf1d8181007235640b46c73 (patch)
tree45ae03bfde26f1e8636a532eb1dffe1316dea797
parent3b1abddb25b722d12b5dbf224ca36e83df404e44 (diff)
downloadmariadb-git-5af42c1b25c72ca16bf1d8181007235640b46c73.tar.gz
minor fix to mtr_process.pl
mysql-test/lib/mtr_process.pl: print extra message _once_ every 60 seconds
-rw-r--r--mysql-test/lib/mtr_process.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/lib/mtr_process.pl b/mysql-test/lib/mtr_process.pl
index 9d0c1f601ba..eef2f1b9dd5 100644
--- a/mysql-test/lib/mtr_process.pl
+++ b/mysql-test/lib/mtr_process.pl
@@ -1053,7 +1053,7 @@ sub sleep_until_file_created ($$$) {
# Print extra message every 60 seconds
my $seconds= ($loop * $sleeptime) / 1000;
- if ( $seconds > 1 and int($seconds) % 60 == 0 )
+ if ( $seconds > 1 and int($seconds * 10) % 600 == 0 )
{
my $left= $timeout - $seconds;
mtr_warning("Waited $seconds seconds for $pidfile to be created, " .