diff options
author | Pascal Borreli <pascal@borreli.com> | 2012-10-14 03:57:18 +0000 |
---|---|---|
committer | Tad Marshall <tad@10gen.com> | 2012-10-14 12:48:21 -0400 |
commit | 39e0e4af9ed4a6e8d2e158c699a89a2281c1b8bb (patch) | |
tree | f1ea7210c6f52f0ac15a56109f009706ebe414c7 /src/mongo/client/parallel.cpp | |
parent | 918a14c42a9156086578c28e1a7311c564aac2b3 (diff) | |
download | mongo-39e0e4af9ed4a6e8d2e158c699a89a2281c1b8bb.tar.gz |
Fixed typos
Signed-off-by: Tad Marshall <tad@10gen.com>
Diffstat (limited to 'src/mongo/client/parallel.cpp')
-rw-r--r-- | src/mongo/client/parallel.cpp | 8 |
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; } |