Support connecting to ipv6 jmx with nodetool

patch by Robert Stupp; reviewed by jbellis for CASSANDRA-7669
This commit is contained in:
Jonathan Ellis 2014-08-04 12:02:19 -05:00
parent 0dd39c6a55
commit 4a9634a31e
2 changed files with 4 additions and 1 deletions

View File

@ -1,14 +1,17 @@
1.2.19
* Support connecting to ipv6 jmx with nodetool (CASSANDRA-7669)
* Set gc_grace_seconds to seven days for system schema tables (CASSANDRA-7668)
* SimpleSeedProvider no longer caches seeds forever (CASSANDRA-7663)
* Set correct stream ID on responses when non-Exception Throwables
are thrown while handling native protocol messages (CASSANDRA-7470)
* Fix row size miscalculation in LazilyCompactedRow (CASSANDRA-7543)
1.2.18
* Support Thrift tables clustering columns on CqlPagingInputFormat (CASSANDRA-7445)
* Fix compilation with java 6 broke by CASSANDRA-7147
1.2.17
* cqlsh: Fix CompositeType columns in DESCRIBE TABLE output (CASSANDRA-7399)
* Expose global ColumnFamily metrics (CASSANDRA-7273)

View File

@ -60,7 +60,7 @@ import org.apache.cassandra.utils.SimpleCondition;
*/
public class NodeProbe
{
private static final String fmtUrl = "service:jmx:rmi:///jndi/rmi://%s:%d/jmxrmi";
private static final String fmtUrl = "service:jmx:rmi:///jndi/rmi://[%s]:%d/jmxrmi";
private static final String ssObjName = "org.apache.cassandra.db:type=StorageService";
private static final int defaultPort = 7199;
final String host;