Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

3.x: Disable CCMBridgeTest#should_make_JMX_connection() for OSS >= 6.2.0 #398

Merged
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

import static org.assertj.core.api.Assertions.assertThat;

import com.datastax.driver.core.utils.ScyllaVersion;
import java.net.InetSocketAddress;
import javax.management.remote.JMXConnector;
import javax.management.remote.JMXConnectorFactory;
Expand All @@ -29,6 +30,9 @@
public class CCMBridgeTest extends CCMTestsSupport {

@Test(groups = "short")
@ScyllaVersion(
maxOSS = "6.2.0",
description = "JMX was dropped in scylladb/3cd2a6173668c5a13b6e674f912ff597f76422f5")
public void should_make_JMX_connection() throws Exception {
InetSocketAddress addr1 = ccm().jmxAddressOfNode(1);
InetSocketAddress addr2 = ccm().jmxAddressOfNode(2);
Expand Down