summaryrefslogtreecommitdiff
path: root/src/mongo/client/parallel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/client/parallel.cpp')
-rw-r--r--src/mongo/client/parallel.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mongo/client/parallel.cpp b/src/mongo/client/parallel.cpp
index 531445f83a2..9158d3eeced 100644
--- a/src/mongo/client/parallel.cpp
+++ b/src/mongo/client/parallel.cpp
@@ -1639,7 +1639,7 @@ namespace mongo {
}
}
catch ( std::exception& e ) {
- error() << "Future::spawnComand (part 1) exception: " << e.what() << endl;
+ error() << "Future::spawnCommand (part 1) exception: " << e.what() << endl;
_ok = false;
_done = true;
}
@@ -1678,13 +1678,13 @@ namespace mongo {
if( staleNS.size() == 0 ) staleNS = _db;
if( i >= maxRetries ){
- error() << "Future::spawnComand (part 2) stale config exception" << causedBy( e ) << endl;
+ error() << "Future::spawnCommand (part 2) stale config exception" << causedBy( e ) << endl;
throw e;
}
if( i >= maxRetries / 2 ){
if( ! versionManager.forceRemoteCheckShardVersionCB( staleNS ) ){
- error() << "Future::spawnComand (part 2) no config detected" << causedBy( e ) << endl;
+ error() << "Future::spawnCommand (part 2) no config detected" << causedBy( e ) << endl;
throw e;
}
}
@@ -1708,7 +1708,7 @@ namespace mongo {
continue;
}
catch ( std::exception& e ) {
- error() << "Future::spawnComand (part 2) exception: " << causedBy( e ) << endl;
+ error() << "Future::spawnCommand (part 2) exception: " << causedBy( e ) << endl;
break;
}