From 53df16390205ad7337ad04b58013b2ce16a2e5b9 Mon Sep 17 00:00:00 2001 From: Patrick Donnelly Date: Mon, 12 Aug 2024 13:42:29 -0400 Subject: [PATCH] mds: fix spelling typo Signed-off-by: Patrick Donnelly --- src/mds/QuiesceAgent.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mds/QuiesceAgent.cc b/src/mds/QuiesceAgent.cc index 3a01910cb26..54355f516ad 100644 --- a/src/mds/QuiesceAgent.cc +++ b/src/mds/QuiesceAgent.cc @@ -173,7 +173,7 @@ void* QuiesceAgent::agent_thread_main() { // send the ack and clear the old roots outside of the lock bool new_version = current.db_version != old.db_version; if (new_version || !ack.roots.empty()) { - dout(20) << "asyncrhonous ack for " << (new_version ? "a new" : "the current") << " version: " << ack << dendl; + dout(20) << "asynchronous ack for " << (new_version ? "a new" : "the current") << " version: " << ack << dendl; int rc = quiesce_control.agent_ack(std::move(ack)); if (rc != 0) { dout(3) << "got error: " << rc << " trying to send " << ack << dendl; -- 2.39.5