Merge branch 'cassandra-4.0' into cassandra-4.1

This commit is contained in:
Brandon Williams 2024-04-04 11:00:07 -05:00
commit 659e41db9a
2 changed files with 3 additions and 1 deletions

View File

@ -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)

View File

@ -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;