Fix replica exception message (#930)

This commit is contained in:
Katarina Supe
2023-06-22 14:41:59 +02:00
committed by GitHub
parent 0ea96663ba
commit 68e5610566

View File

@@ -254,7 +254,7 @@ class ReplicationException : public utils::BasicException {
public:
using utils::BasicException::BasicException;
explicit ReplicationException(const std::string &message)
: utils::BasicException("Replication Exception: {} Check the status of the replicas using 'SHOW REPLICA' query.",
: utils::BasicException("Replication Exception: {} Check the status of the replicas using 'SHOW REPLICAS' query.",
message) {}
};