aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/tests/storageserver/statereportertest.cpp
diff options
context:
space:
mode:
authorGeir Storli <geirst@yahooinc.com>2023-02-24 17:15:11 +0100
committerGitHub <noreply@github.com>2023-02-24 17:15:11 +0100
commit5b1995344966b854ddbdf3810c3f5614c30bea2f (patch)
treecd5444d6c993e940ab0a274cfce31dfc80793714 /storage/src/tests/storageserver/statereportertest.cpp
parentf82bc56396e7251aca9c46a067d189afddb077cc (diff)
parenta907c35031c5a09fb2fc76080f273ff95e663e65 (diff)
Merge pull request #26175 from vespa-engine/havardpe/avoid-fastos-thread-in-storage
avoid using fastos thread in storage
Diffstat (limited to 'storage/src/tests/storageserver/statereportertest.cpp')
-rw-r--r--storage/src/tests/storageserver/statereportertest.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/storage/src/tests/storageserver/statereportertest.cpp b/storage/src/tests/storageserver/statereportertest.cpp
index 4788ed0230c..e9b2f04eb04 100644
--- a/storage/src/tests/storageserver/statereportertest.cpp
+++ b/storage/src/tests/storageserver/statereportertest.cpp
@@ -31,7 +31,6 @@ public:
};
struct StateReporterTest : Test {
- FastOS_ThreadPool _threadPool;
framework::defaultimplementation::FakeClock* _clock;
std::unique_ptr<TestServiceLayerApp> _node;
std::unique_ptr<DummyStorageLink> _top;
@@ -62,8 +61,7 @@ struct MetricClock : public metrics::MetricManager::Timer
}
StateReporterTest::StateReporterTest()
- : _threadPool(),
- _clock(nullptr),
+ : _clock(nullptr),
_top(),
_stateReporter()
{