From ec47da50a292acca210810326a2972604a970ae1 Mon Sep 17 00:00:00 2001 From: Tyler Rockwood Date: Fri, 26 May 2023 22:11:12 -0500 Subject: [PATCH] Don't double start wasm_service Signed-off-by: Tyler Rockwood --- src/v/redpanda/application.cc | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/v/redpanda/application.cc b/src/v/redpanda/application.cc index 933679f55ee65..5002e6de25ab5 100644 --- a/src/v/redpanda/application.cc +++ b/src/v/redpanda/application.cc @@ -1467,13 +1467,6 @@ void application::wire_up_redpanda_services(model::node_id node_id) { syschecks::systemd_message("Creating wasm service").get(); construct_service(wasm_service).get(); - syschecks::systemd_message("Creating tx coordinator mapper").get(); - construct_service( - tx_coordinator_ntp_mapper, std::ref(metadata_cache), model::tx_manager_nt) - .get(); - - construct_service(wasm_service).get(); - syschecks::systemd_message("Creating tx coordinator frontend").get(); // usually it'a an anti-pattern to let the same object be accessed // from different cores without precautionary measures like foreign