diff options
author | Dianna Hohensee <dianna.hohensee@10gen.com> | 2016-03-15 15:38:36 -0400 |
---|---|---|
committer | Dianna Hohensee <dianna.hohensee@10gen.com> | 2016-03-16 12:51:48 -0400 |
commit | a009626596902a54873dc7d14049cbe39f46e227 (patch) | |
tree | 6f3088f5c42d74f9d5f3ab0eeea1479df25a8ce9 | |
parent | 1cbd85144941ca7b837ae0a71e05a021022308e3 (diff) | |
download | mongo-a009626596902a54873dc7d14049cbe39f46e227.tar.gz |
SERVER-20207 replace massert with uassert in dbhelpers' Helpers::removeRange
-rw-r--r-- | src/mongo/db/dbhelpers.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/dbhelpers.cpp b/src/mongo/db/dbhelpers.cpp index 8a8acd7b4ca..fa7824f0768 100644 --- a/src/mongo/db/dbhelpers.cpp +++ b/src/mongo/db/dbhelpers.cpp @@ -458,7 +458,7 @@ long long Helpers::removeRange(OperationContext* txn, warning(LogComponent::kSharding) << "replication to secondaries for removeRange at " "least 60 seconds behind"; } else { - massertStatusOK(replStatus.status); + uassertStatusOK(replStatus.status); } millisWaitingForReplication += replStatus.duration; } |