aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/vespa/storage/config/distributorconfiguration.h
diff options
context:
space:
mode:
Diffstat (limited to 'storage/src/vespa/storage/config/distributorconfiguration.h')
-rw-r--r--storage/src/vespa/storage/config/distributorconfiguration.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/storage/src/vespa/storage/config/distributorconfiguration.h b/storage/src/vespa/storage/config/distributorconfiguration.h
index 28a219dc3f6..3cb84943508 100644
--- a/storage/src/vespa/storage/config/distributorconfiguration.h
+++ b/storage/src/vespa/storage/config/distributorconfiguration.h
@@ -250,6 +250,13 @@ public:
_allowStaleReadsDuringClusterStateTransitions = allow;
}
+ bool update_fast_path_restart_enabled() const noexcept {
+ return _update_fast_path_restart_enabled;
+ }
+ void set_update_fast_path_restart_enabled(bool enabled) noexcept {
+ _update_fast_path_restart_enabled = enabled;
+ }
+
bool containsTimeStatement(const std::string& documentSelection) const;
private:
@@ -293,6 +300,7 @@ private:
bool _disableBucketActivation;
bool _sequenceMutatingOperations;
bool _allowStaleReadsDuringClusterStateTransitions;
+ bool _update_fast_path_restart_enabled;
DistrConfig::MinimumReplicaCountingMode _minimumReplicaCountingMode;