0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

SERVER-12804 Revert smoke.py log message change causing test failure

This commit is contained in:
Shaun Verch 2014-02-21 14:19:51 -05:00
parent 815f4f88e6
commit f9fac71d2e

View File

@ -326,11 +326,10 @@ def check_db_hashes(master, slave):
if not slave.slave:
raise(Bug("slave instance doesn't have slave attribute set"))
print "waiting for slave ({}) to catch up to master ({})".format(slave.port, master.port)
print "waiting for slave to catch up"
master.wait_for_repl()
print "caught up!"
# FIXME: maybe make this run dbhash on all databases?
for mongod in [master, slave]:
mongod.dbhash = Connection(port=mongod.port, slave_okay=True).test.command("dbhash")