From 33a0864aaa44cbcd461e0b9c4907762df91b0251 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patryk=20J=C4=99drzejczak?= Date: Mon, 18 Mar 2024 15:32:43 +0100 Subject: [PATCH] topology_coordinator: clean_obsolete_cdc_generations: fix log We use a non-inclusive bound here, so the log was incorrect. --- service/topology_coordinator.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/topology_coordinator.cc b/service/topology_coordinator.cc index c51f5c34ba..61fd484bc7 100644 --- a/service/topology_coordinator.cc +++ b/service/topology_coordinator.cc @@ -626,7 +626,7 @@ class topology_coordinator : public endpoint_lifecycle_subscriber { builder.set_committed_cdc_generations(std::move(new_committed_gens)); updates.push_back(builder.build()); - reason += ::format("deleted data of CDC generations with time UUID not exceeding {}", id_upper_bound); + reason += ::format("deleted data of CDC generations with time UUID lower than {}", id_upper_bound); } // If there are some unpublished CDC generations, publishes the one with the oldest timestamp