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

Revert "increase listeningOn() timeout to 100ms"

This reverts commit 7b4729ff9b.
This commit is contained in:
Mathias Stearn 2010-09-13 15:07:36 -04:00
parent e47687bd03
commit 2a2586a226

View File

@ -223,7 +223,7 @@ namespace mongo {
bool ret = false;
try {
DBClientConnection c (false, NULL, 0.1); // 100ms timeout
DBClientConnection c (false, NULL, 0.001); // 1ms timeout
c.connect(addr.toString());
BSONObj out;