summaryrefslogtreecommitdiff
path: root/src/mongo/s/client/parallel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/s/client/parallel.cpp')
-rw-r--r--src/mongo/s/client/parallel.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mongo/s/client/parallel.cpp b/src/mongo/s/client/parallel.cpp
index 2505c039cb3..9a3756088fd 100644
--- a/src/mongo/s/client/parallel.cpp
+++ b/src/mongo/s/client/parallel.cpp
@@ -68,8 +68,7 @@ void throwCursorError(DBClientCursor* cursor) {
verify(cursor);
if (cursor->hasResultFlag(ResultFlag_ErrSet)) {
- BSONObj o = cursor->next();
- uasserted(o["code"].numberInt(), o["$err"].str());
+ uassertStatusOK(getStatusFromCommandResult(cursor->next()));
}
}