mirror of https://github.com/apache/cassandra
Fix typo in log message
This commit is contained in:
parent
fe6980eb7d
commit
4dcd15f48d
|
|
@ -98,7 +98,7 @@ public class IncomingTcpConnection extends Thread
|
||||||
{
|
{
|
||||||
// save the endpoint so gossip will reconnect to it
|
// save the endpoint so gossip will reconnect to it
|
||||||
Gossiper.instance.addSavedEndpoint(from);
|
Gossiper.instance.addSavedEndpoint(from);
|
||||||
logger.info("Received " + (isStream ? "streaming " : "") + "connection from newer protocol version. Ignorning");
|
logger.info("Received " + (isStream ? "streaming " : "") + "connection from newer protocol version. Ignoring");
|
||||||
}
|
}
|
||||||
else if (msg != null)
|
else if (msg != null)
|
||||||
{
|
{
|
||||||
|
|
@ -160,7 +160,7 @@ public class IncomingTcpConnection extends Thread
|
||||||
MessagingService.instance().receive(message, id);
|
MessagingService.instance().receive(message, id);
|
||||||
return message;
|
return message;
|
||||||
}
|
}
|
||||||
logger.debug("Received connection from newer protocol version {}. Ignorning message", version);
|
logger.debug("Received connection from newer protocol version {}. Ignoring message", version);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue