aboutsummaryrefslogtreecommitdiffstats
path: root/storage
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2021-12-09 19:40:00 +0000
committerHenning Baldersheim <balder@yahoo-inc.com>2021-12-09 19:40:00 +0000
commit06a8585e58111223b6e1c19e8c24066714c51b89 (patch)
treed5e8e266d77f8fe1f3a4c92d04ab458ff401dcb2 /storage
parentd30df2cdc5580affa56eb6ca5ab2ab4145aa112c (diff)
_executor -> _thread
Diffstat (limited to 'storage')
-rw-r--r--storage/src/tests/persistence/filestorage/operationabortingtest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/src/tests/persistence/filestorage/operationabortingtest.cpp b/storage/src/tests/persistence/filestorage/operationabortingtest.cpp
index ffd7d804663..1752de5fb80 100644
--- a/storage/src/tests/persistence/filestorage/operationabortingtest.cpp
+++ b/storage/src/tests/persistence/filestorage/operationabortingtest.cpp
@@ -22,7 +22,7 @@ namespace storage {
namespace {
-VESPA_THREAD_STACK_TAG(test_executor);
+VESPA_THREAD_STACK_TAG(test_thread);
// Exploit the fact that PersistenceProviderWrapper already provides a forwarding
// implementation of all SPI calls, so we can selectively override.
@@ -296,7 +296,7 @@ TEST_F(OperationAbortingTest, wait_for_current_operation_completion_for_aborted_
auto abortCmd = makeAbortCmd(abortSet);
SendTask sendTask(abortCmd, *_queueBarrier, c.top);
- vespalib::Thread thread(sendTask, test_executor);
+ vespalib::Thread thread(sendTask, test_thread);
thread.start();
LOG(debug, "waiting for threads to reach barriers");