diff options
author | Eliot Horowitz <eliot@10gen.com> | 2009-08-28 10:17:04 -0400 |
---|---|---|
committer | Eliot Horowitz <eliot@10gen.com> | 2009-08-28 10:17:04 -0400 |
commit | af2d29ca3008f098ccfea7199538e96ee0861218 (patch) | |
tree | fd04e47fc219d59b967cea5a00d52ec353b4b1cf /db/storage.h | |
parent | 2069e630536a7c38a28831ebc62ba5963f632b19 (diff) | |
download | mongo-af2d29ca3008f098ccfea7199538e96ee0861218.tar.gz |
validate() says invalid if more than 20 files SERVER-269
Diffstat (limited to 'db/storage.h')
-rw-r--r-- | db/storage.h | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |