From ead842d6231599e3b9c3e7895a92770244c36d6c Mon Sep 17 00:00:00 2001 From: "Wladimir J. van der Laan" Date: Fri, 15 May 2015 11:44:58 +0200 Subject: [PATCH] Remove assertion from ~LockedPageManager This assertion will occur any time that the client quits without shutting down properly due to an error condition. As the user will report this error instead of the error that was the root cause, it is better to remove it. --- src/allocators.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/allocators.h b/src/allocators.h index 78a3b76d0cd9..42550119d856 100644 --- a/src/allocators.h +++ b/src/allocators.h @@ -40,7 +40,6 @@ class LockedPageManagerBase ~LockedPageManagerBase() { - assert(this->GetLockedPageCount() == 0); }