aboutsummaryrefslogtreecommitdiffstats
path: root/storage
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2018-03-22 20:52:22 +0000
committerHenning Baldersheim <balder@oath.com>2018-04-09 14:19:49 +0200
commit5657abcf9c7342b23f100a2d8e979f18140c352a (patch)
treea8848b3947c853bfcc9f6bf041bcc0377b1cf4e6 /storage
parent4b9b879d812c5d211ed78f9a6ebab2efb608ea93 (diff)
Remove assert that is invalid as threads are started upon construction
Diffstat (limited to 'storage')
-rw-r--r--storage/src/vespa/storage/persistence/filestorage/filestorhandlerimpl.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/storage/src/vespa/storage/persistence/filestorage/filestorhandlerimpl.h b/storage/src/vespa/storage/persistence/filestorage/filestorhandlerimpl.h
index dd3dc01d69f..c653af9b6bc 100644
--- a/storage/src/vespa/storage/persistence/filestorage/filestorhandlerimpl.h
+++ b/storage/src/vespa/storage/persistence/filestorage/filestorhandlerimpl.h
@@ -167,7 +167,6 @@ public:
std::vector<std::shared_ptr<api::StorageReply>> abort(const AbortBucketOperationsCommand& cmd);
void waitInactive(const AbortBucketOperationsCommand& cmd) const;
FileStorHandler::LockedMessage getNextMessage(uint32_t stripeId, uint32_t timeout) {
- assert(_nextStripeId >= _stripes.size());
return _stripes[stripeId].getNextMessage(timeout, *this);
}
FileStorHandler::LockedMessage & getNextMessage(uint32_t stripeId, FileStorHandler::LockedMessage & lck) {