Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion management-api-agent-5.0.x/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<artifactId>datastax-mgmtapi-agent-5.0.x</artifactId>
<properties>
<cassandra5.version>5.0.5</cassandra5.version>
<netty.http.codec.version>4.1.96.Final</netty.http.codec.version>
<netty.http.codec.version>4.1.128.Final</netty.http.codec.version>
</properties>
<dependencies>
<!-- Need to explicitly declare SLF4J as "provided" to avoid it being bundled into the resulting agent jarfile -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public SocketAddress localAddress() {
@Override
public SocketAddress remoteAddress() {
/**
* For Cassandra 5.0, and/or possibly Netty 4.1.96.Final, the remote address for the Channel
* For Cassandra 5.0, and/or possibly Netty 4.1.128.Final, the remote address for the Channel
* seems to be initialized to a Netty io.netty.channel.unix.DomainSocketAddress instance. For
* Cassandra 4.1 and lower, it seems to be null. Strangely enough, an initialized instance of
* io.netty.channel.unix.DomainSocketAddress causes a ClassCastException in Cassandra, since it
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public SocketAddress localAddress() {
@Override
public SocketAddress remoteAddress() {
/**
* For Cassandra 5.0, and/or possibly Netty 4.1.96.Final, the remote address for the Channel
* For Cassandra 5.0, and/or possibly Netty 4.1.128.Final, the remote address for the Channel
* seems to be initialized to a Netty io.netty.channel.unix.DomainSocketAddress instance. For
* Cassandra 4.1 and lower, it seems to be null. Strangely enough, an initialized instance of
* io.netty.channel.unix.DomainSocketAddress causes a ClassCastException in Cassandra, since it
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public SocketAddress localAddress() {
@Override
public SocketAddress remoteAddress() {
/**
* For Cassandra 5.0, and/or possibly Netty 4.1.96.Final, the remote address for the Channel
* For Cassandra 5.0, and/or possibly Netty 4.1.128.Final, the remote address for the Channel
* seems to be initialized to a Netty io.netty.channel.unix.DomainSocketAddress instance. For
* Cassandra 4.1 and lower, it seems to be null. Strangely enough, an initialized instance of
* io.netty.channel.unix.DomainSocketAddress causes a ClassCastException in Cassandra, since it
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public SocketAddress localAddress() {
@Override
public SocketAddress remoteAddress() {
/**
* For Cassandra 5.0, and/or possibly Netty 4.1.96.Final, the remote address for the Channel
* For Cassandra 5.0, and/or possibly Netty 4.1.128.Final, the remote address for the Channel
* seems to be initialized to a Netty io.netty.channel.unix.DomainSocketAddress instance. For
* Cassandra 4.1 and lower, it seems to be null. Strangely enough, an initialized instance of
* io.netty.channel.unix.DomainSocketAddress causes a ClassCastException in Cassandra, since it
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<bytebuddy.version>1.12.19</bytebuddy.version>
<build.version.file>build_version.sh</build.version.file>
<slf4j.version>2.0.9</slf4j.version>
<logback.version>1.5.13</logback.version>
<logback.version>1.5.19</logback.version>
<netty.version>4.1.128.Final</netty.version>
<mockito.version>3.5.13</mockito.version>
<prometheus.version>0.16.0</prometheus.version>
Expand Down
Loading