summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorShaun Verch <shaun.verch@10gen.com>2014-02-21 14:19:51 -0500
committerShaun Verch <shaun.verch@10gen.com>2014-02-21 14:20:46 -0500
commitf9fac71d2e5bc70586c6d68acea5a4adc7a09c27 (patch)
treeaa5296a7e4e2529ac8c385c95fc16102ca317445 /buildscripts
parent815f4f88e6953057b9c9f8ac4e9b94c959063dbc (diff)
downloadmongo-f9fac71d2e5bc70586c6d68acea5a4adc7a09c27.tar.gz
SERVER-12804 Revert smoke.py log message change causing test failure
Diffstat (limited to 'buildscripts')
-rwxr-xr-xbuildscripts/smoke.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/buildscripts/smoke.py b/buildscripts/smoke.py
index 33254ebb6c5..6dcaa2834c8 100755
--- a/buildscripts/smoke.py
+++ b/buildscripts/smoke.py
@@ -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")