aboutsummaryrefslogtreecommitdiffstats
path: root/storageapi
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2021-02-23 21:09:08 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2021-02-23 21:21:34 +0000
commit2d1f4ba77c803a7bdb9f4a2f0bd31b6208011f82 (patch)
tree0fb95d10334300368a147af2fc9e335b8d4c9b5f /storageapi
parentfcfe291173a6a6f14a77abec96709383fee21866 (diff)
- Change error handling so that both synchonous and asynchronous errors can be reported back from bucket executor.
- Treat remapping as an error. - For lidspace compaction job iterator is reset and will be recreated on next invocation. - For bucketmove th ebucket is rechecked and either discarded or restarted.
Diffstat (limited to 'storageapi')
-rw-r--r--storageapi/src/vespa/storageapi/message/internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/storageapi/src/vespa/storageapi/message/internal.h b/storageapi/src/vespa/storageapi/message/internal.h
index 4246c43a3c4..af50abba005 100644
--- a/storageapi/src/vespa/storageapi/message/internal.h
+++ b/storageapi/src/vespa/storageapi/message/internal.h
@@ -32,7 +32,7 @@ class InternalCommand : public StorageCommand {
public:
InternalCommand(uint32_t type);
- ~InternalCommand();
+ ~InternalCommand() override;
uint32_t getType() const { return _type; }
@@ -54,7 +54,7 @@ class InternalReply : public StorageReply {
public:
InternalReply(uint32_t type, const InternalCommand& cmd);
- ~InternalReply();
+ ~InternalReply() override;
uint32_t getType() const { return _type; }