mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-4.0' into cassandra-4.1
This commit is contained in:
commit
659e41db9a
|
|
@ -2,6 +2,7 @@
|
|||
* Do not go to disk for reading hints file sizes (CASSANDRA-19477)
|
||||
* Fix system_views.settings to handle array types (CASSANDRA-19475)
|
||||
Merged from 4.0:
|
||||
* Change logging to TRACE when failing to get peer certificate (CASSANDRA-19508)
|
||||
* Push LocalSessions info logs to debug (CASSANDRA-18335)
|
||||
* Filter remote DC replicas out when constructing the initial replica plan for the local read repair (CASSANDRA-19120)
|
||||
* Remove redundant code in StorageProxy#sendToHintedReplicas (CASSANDRA-19412)
|
||||
|
|
|
|||
|
|
@ -137,7 +137,8 @@ public class ServerConnection extends Connection
|
|||
}
|
||||
catch (SSLPeerUnverifiedException e)
|
||||
{
|
||||
logger.debug("Failed to get peer certificates for peer {}", channel().remoteAddress(), e);
|
||||
if (logger.isTraceEnabled())
|
||||
logger.trace("Failed to get peer certificates for peer {}", channel().remoteAddress(), e);
|
||||
}
|
||||
}
|
||||
return certificates;
|
||||
|
|
|
|||
Loading…
Reference in New Issue