summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorMike Dirolf <mike@10gen.com>2010-09-01 17:48:57 -0400
committerMike Dirolf <mike@10gen.com>2010-09-01 17:48:57 -0400
commit562f58d9a1219e58b8da76b55bfb69bfe2fc43dd (patch)
tree899a4f24bb7c95beef43cc3482a05e8eaa7f8ed3 /buildscripts
parent0920dbf99171829b2c3561931c28ea9147973e32 (diff)
downloadmongo-562f58d9a1219e58b8da76b55bfb69bfe2fc43dd.tar.gz
allow connecting to slave in smoke.py
Diffstat (limited to 'buildscripts')
-rwxr-xr-xbuildscripts/smoke.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/smoke.py b/buildscripts/smoke.py
index 99db86aab7f..7af0a8bd35e 100755
--- a/buildscripts/smoke.py
+++ b/buildscripts/smoke.py
@@ -161,7 +161,7 @@ class mongod(object):
raise Exception("Failed to start mongod")
if self.slave:
- local = Connection(port=self.port).local
+ local = Connection(port=self.port, slave_okay=True).local
synced = False
while not synced:
synced = True