aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/server/shared_threading_service_config.h
diff options
context:
space:
mode:
Diffstat (limited to 'searchcore/src/vespa/searchcore/proton/server/shared_threading_service_config.h')
-rw-r--r--searchcore/src/vespa/searchcore/proton/server/shared_threading_service_config.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/server/shared_threading_service_config.h b/searchcore/src/vespa/searchcore/proton/server/shared_threading_service_config.h
index 9292ba3db74..2b63529485f 100644
--- a/searchcore/src/vespa/searchcore/proton/server/shared_threading_service_config.h
+++ b/searchcore/src/vespa/searchcore/proton/server/shared_threading_service_config.h
@@ -18,7 +18,6 @@ public:
private:
uint32_t _shared_threads;
uint32_t _shared_task_limit;
- uint32_t _warmup_threads;
uint32_t _field_writer_threads;
double _feeding_niceness;
ThreadingServiceConfig _field_writer_config;
@@ -26,7 +25,6 @@ private:
public:
SharedThreadingServiceConfig(uint32_t shared_threads_in,
uint32_t shared_task_limit_in,
- uint32_t warmup_threads_in,
uint32_t field_writer_threads_in,
double feed_niceness_in,
const ThreadingServiceConfig& field_writer_config_in);
@@ -35,7 +33,6 @@ public:
uint32_t shared_threads() const { return _shared_threads; }
uint32_t shared_task_limit() const { return _shared_task_limit; }
- uint32_t warmup_threads() const { return _warmup_threads; }
uint32_t field_writer_threads() const { return _field_writer_threads; }
double feeding_niceness() const { return _feeding_niceness; }
const ThreadingServiceConfig& field_writer_config() const { return _field_writer_config; }