From 3c9a471c0bdc038ca62790a6517765ed739d3660 Mon Sep 17 00:00:00 2001 From: Andrew Gable Date: Mon, 27 Jan 2025 11:07:02 -0700 Subject: [PATCH] Fix typo in warn message --- sqlitecluster/SQLiteNode.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlitecluster/SQLiteNode.cpp b/sqlitecluster/SQLiteNode.cpp index a87e25f96..622d1a5dc 100644 --- a/sqlitecluster/SQLiteNode.cpp +++ b/sqlitecluster/SQLiteNode.cpp @@ -713,7 +713,7 @@ bool SQLiteNode::update() { SASSERTWARN(_db.getUncommittedHash().empty()); if (_isShuttingDown) { - SWARN("Shutting down in WAITING, how did we here here?"); + SWARN("Shutting down in WAITING, how did we get here?"); // Return false to allow the poll loop to run again. This is here for legacy reasons form before the above warning was added. // Probably this whole block can be removed if that warning never fires.