diff --git a/service/migration_manager.cc b/service/migration_manager.cc index 225da16b03..41f3c01476 100644 --- a/service/migration_manager.cc +++ b/service/migration_manager.cc @@ -207,15 +207,19 @@ future<> migration_manager::submit_migration_task(const gms::inet_address& endpo future<> migration_manager::do_merge_schema_from(netw::messaging_service::msg_addr id) { auto& ms = netw::get_local_messaging_service(); + mlogger.info("Pulling schema from {}", id); return ms.send_migration_request(std::move(id)).then([this, id] (std::vector mutations) { return do_with(std::move(mutations), [this, id] (auto&& mutations) { return this->merge_schema_from(id, mutations); }); + }).then([id] { + mlogger.info("Schema merge with {} completed", id); }); } future<> migration_manager::merge_schema_from(netw::messaging_service::msg_addr id) { + mlogger.info("Requesting schema pull from {}", id); auto i = _schema_pulls.find(id); if (i == _schema_pulls.end()) { // FIXME: Drop entries for removed nodes (or earlier).