aboutsummaryrefslogtreecommitdiffstats
path: root/searchcore/src/vespa/searchcore/proton/server/proton_thread_pools_explorer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'searchcore/src/vespa/searchcore/proton/server/proton_thread_pools_explorer.cpp')
-rw-r--r--searchcore/src/vespa/searchcore/proton/server/proton_thread_pools_explorer.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/server/proton_thread_pools_explorer.cpp b/searchcore/src/vespa/searchcore/proton/server/proton_thread_pools_explorer.cpp
index ee0e41046fb..d18b0f14a7f 100644
--- a/searchcore/src/vespa/searchcore/proton/server/proton_thread_pools_explorer.cpp
+++ b/searchcore/src/vespa/searchcore/proton/server/proton_thread_pools_explorer.cpp
@@ -17,14 +17,12 @@ ProtonThreadPoolsExplorer::ProtonThreadPoolsExplorer(const ThreadExecutor* share
const ThreadExecutor* docsum,
const ThreadExecutor* flush,
const ThreadExecutor* proton,
- const ThreadExecutor* warmup,
vespalib::ISequencedTaskExecutor* field_writer)
: _shared(shared),
_match(match),
_docsum(docsum),
_flush(flush),
_proton(proton),
- _warmup(warmup),
_field_writer(field_writer)
{
}
@@ -39,7 +37,6 @@ ProtonThreadPoolsExplorer::get_state(const vespalib::slime::Inserter& inserter,
convert_executor_to_slime(_docsum, object.setObject("docsum"));
convert_executor_to_slime(_flush, object.setObject("flush"));
convert_executor_to_slime(_proton, object.setObject("proton"));
- convert_executor_to_slime(_warmup, object.setObject("warmup"));
}
}