Fixing vtclient2 logging in tests.

This commit is contained in:
Alain Jobart 2014-01-28 13:16:55 -08:00
Родитель 11690e9a67
Коммит 3f3afd5b50
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -175,6 +175,6 @@ func main() {
if err := r.Err(); err != nil {
log.Fatalf("Error %v\n", err)
}
log.Infof("Total time:", time.Now().Sub(now), "Row count:", rowIndex)
log.Infof("Total time: %v / Row count: %v", time.Now().Sub(now), rowIndex)
}
}

Просмотреть файл

@ -309,7 +309,7 @@ class TestTabletManager(unittest.TestCase):
path='test_keyspace/0', verbose=True,
user='ala', password=r'ma kota')
logging.debug("Got rows: " + err)
if 'Row count:' not in err:
if 'Row count: 4' not in err:
self.fail("query didn't go through: %s, %s" % (err, out))
tablet_62344.kill_vttablet()

Просмотреть файл

@ -423,7 +423,7 @@ def vtclient2(uid, path, query, bindvars=None, user=None, password=None, driver=
if driver:
cmdline.extend(['-driver', driver])
if verbose:
cmdline.append('-alsologtostderr')
cmdline.extend(['-alsologtostderr', '-verbose'])
cmdline.append(query)
return run(cmdline, raise_on_error=raise_on_error, trap_output=True)