summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/mobile
diff options
context:
space:
mode:
authorHenrik Edin <henrik.edin@mongodb.com>2019-04-05 11:06:44 -0400
committerHenrik Edin <henrik.edin@mongodb.com>2019-04-05 11:06:44 -0400
commitf3232b5169ac56da663520b6ecba95a42c84933a (patch)
treea2de1a307bc743a9f18a63b60090ca271f4063e2 /src/mongo/db/storage/mobile
parent2ee7dcb2bcb4372a49b8584c43bb65caea6212c8 (diff)
downloadmongo-f3232b5169ac56da663520b6ecba95a42c84933a.tar.gz
SERVER-32709 Fix duplicate error code
Diffstat (limited to 'src/mongo/db/storage/mobile')
-rw-r--r--src/mongo/db/storage/mobile/mobile_recovery_unit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/storage/mobile/mobile_recovery_unit.cpp b/src/mongo/db/storage/mobile/mobile_recovery_unit.cpp
index f3f04b5972c..8ebd40e3f3f 100644
--- a/src/mongo/db/storage/mobile/mobile_recovery_unit.cpp
+++ b/src/mongo/db/storage/mobile/mobile_recovery_unit.cpp
@@ -152,7 +152,7 @@ bool MobileRecoveryUnit::waitUntilDurable() {
&checkpointedFrames);
}
embedded::checkStatus(ret, SQLITE_OK, "sqlite3_wal_checkpoint_v2");
- fassert(51160,
+ fassert(51164,
framesInWAL != -1 && checkpointedFrames != -1 && framesInWAL == checkpointedFrames);
RECOVERY_UNIT_TRACE() << "Checkpointed " << checkpointedFrames << " of the " << framesInWAL
<< " total frames in the WAL";