From af2d29ca3008f098ccfea7199538e96ee0861218 Mon Sep 17 00:00:00 2001 From: Eliot Horowitz Date: Fri, 28 Aug 2009 10:17:04 -0400 Subject: validate() says invalid if more than 20 files SERVER-269 --- db/storage.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'db/storage.h') diff --git a/db/storage.h b/db/storage.h index ac436f71021..c8b7f7a3c88 100644 --- a/db/storage.h +++ b/db/storage.h @@ -55,7 +55,7 @@ namespace mongo { bool questionable() { return ofs < -1 || fileNo < -1 || - fileNo > 20; + fileNo > 524288; } bool isNull() const { -- cgit v1.2.1