Skip to content

Commit

Permalink
Log if we ever get an invalid message
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerkaraszewski committed Jan 15, 2025
1 parent b65910a commit 8f8d3b0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions sqlitecluster/SQLiteNode.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,8 @@ void SQLiteNode::_replicate() {
}
} else if (SIEquals(command.methodLine, "ROLLBACK_TRANSACTION")) {
_handleRollbackTransaction(db, peer, command);
} else {
SWARN("Invalid command passed to _replicate: " << command.methodLine);
}
}
}
Expand Down

0 comments on commit 8f8d3b0

Please sign in to comment.