From: Date: April 25 2007 3:21pm Subject: bk commit into 5.0 tree (tomas:1.2402) BUG#28093 List-Archive: http://lists.mysql.com/commits/25400 X-Bug: 28093 Message-Id: <20070425132143.4EA5D378B7C@whalegate.ndb.mysql.com> Below is the list of changes that have just been committed into a local 5.0 repository of tomas. When tomas does a push these changes will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html ChangeSet@stripped, 2007-04-25 15:21:38+02:00, tomas@stripped +1 -0 Bug #28093 ndb: retry sleep in get table stats 30s instead of 30ms sql/ha_ndbcluster.cc@stripped, 2007-04-25 15:21:36+02:00, tomas@stripped +1 -1 Bug #28093 ndb: retry sleep in get table stats 30s instead of 30ms # This is a BitKeeper patch. What follows are the unified diffs for the # set of deltas contained in the patch. The rest of the patch, the part # that BitKeeper cares about, is below these diffs. # User: tomas # Host: whalegate.ndb.mysql.com # Root: /home/tomas/mysql-5.0-telco-gca --- 1.302/sql/ha_ndbcluster.cc 2007-04-02 18:21:03 +02:00 +++ 1.303/sql/ha_ndbcluster.cc 2007-04-25 15:21:36 +02:00 @@ -6059,7 +6059,7 @@ NdbError error; int retries= 10; int reterr= 0; - int retry_sleep= 30 * 1000; /* 30 milliseconds */ + int retry_sleep= 30; /* 30 milliseconds, transaction */ char buff[22], buff2[22], buff3[22], buff4[22]; DBUG_ENTER("ndb_get_table_statistics"); DBUG_PRINT("enter", ("table: %s", table));