try connect only once at first time

This commit is contained in:
Cloud Wu
2014-04-22 16:18:49 +08:00
parent 08c511160f
commit b6c208cf51
4 changed files with 14 additions and 13 deletions

View File

@@ -103,7 +103,7 @@ function mongo.client( conf )
auth = mongo_auth(conf),
}
setmetatable(obj, client_meta)
obj.__sock:connect()
obj.__sock:connect(true) -- try connect only once
return obj
end