aboutsummaryrefslogtreecommitdiffstats
path: root/persistence
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2021-02-02 16:19:03 +0100
committerGitHub <noreply@github.com>2021-02-02 16:19:03 +0100
commit4c87d180e880012b9ef932c8490a773509cfedd0 (patch)
treeff993a6ea2bf254e06d6875511aeae533c9b1d8b /persistence
parentcc09087f82931a6b00498128f88c30e8d024bd34 (diff)
Revert "Properly track execution of BucketTasks and provide sync() and order… "
Diffstat (limited to 'persistence')
-rw-r--r--persistence/src/vespa/persistence/spi/bucket.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/persistence/src/vespa/persistence/spi/bucket.h b/persistence/src/vespa/persistence/spi/bucket.h
index 507cc80ad76..30393109cc9 100644
--- a/persistence/src/vespa/persistence/spi/bucket.h
+++ b/persistence/src/vespa/persistence/spi/bucket.h
@@ -21,12 +21,12 @@ public:
explicit Bucket(const document::Bucket& b) noexcept
: _bucket(b) {}
- const document::Bucket &getBucket() const noexcept { return _bucket; }
- document::BucketId getBucketId() const noexcept { return _bucket.getBucketId(); }
- document::BucketSpace getBucketSpace() const noexcept { return _bucket.getBucketSpace(); }
+ const document::Bucket &getBucket() const { return _bucket; }
+ document::BucketId getBucketId() const { return _bucket.getBucketId(); }
+ document::BucketSpace getBucketSpace() const { return _bucket.getBucketSpace(); }
/** Convert easily to a document bucket id to make class easy to use. */
- operator document::BucketId() const noexcept { return _bucket.getBucketId(); }
+ operator document::BucketId() const { return _bucket.getBucketId(); }
bool operator==(const Bucket& o) const noexcept {
return (_bucket == o._bucket);