-
Notifications
You must be signed in to change notification settings - Fork 38
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
[dtest]: test_connectivity_with_cassandra_stress failed with java.lang.NoSuchMethodError #267
[dtest]: test_connectivity_with_cassandra_stress failed with java.lang.NoSuchMethodError #267
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, I can see that CI has for some reason terribly failed, but it seems to be unrelated.
@fruch I think that the CI fails for an issue with CCM can you please take a look? |
Isn't it scylladb/scylla-ccm#537 and friends? |
yes, it's not yet handled (@k0machi was in the middle of handling it) |
This PR should fix the broken CI due to CCM #269. |
I re-ran CI, since the CI issue is fixed. |
This PR needs to be rebase for it to work |
8d8070e
to
da75271
Compare
Rebased |
@fruch Still some failures. are they ok? |
I don't know, just that two of them looks like the same failures in @roydahan
and one new, which I don't know if related or not:
|
@Bouncheck / @avelanarius , We need someone to check the new failure. Regarding the other failures, I saw them in my other PR as well to fix the CI. |
2 out of 3 (MapperUDTTest failures) are just a matter of having a different error message in newer Scylla. This should be an easy fix. |
…g.NoSuchMethodError Following the changed made in scylladb/scylla-tools-java#369, dtest is now failing during `test_connectivity_with_cassandra_stress` with the following error: ``` stderr: java.lang.NoSuchMethodError: 'java.lang.String com.google.common.net.HostAndPort.getHostText()' at com.datastax.driver.core.ScyllaCloudDatacenter.getServer(ScyllaCloudDatacenter.java:77) at com.datastax.driver.core.Cluster$Builder.withScyllaCloudConnectionConfig(Cluster.java:1404) at com.datastax.driver.core.Cluster$Builder.withScyllaCloudConnectionConfig(Cluster.java:1397) at com.datastax.driver.core.Cluster$Builder.withScyllaCloudConnectionConfig(Cluster.java:1393) at com.datastax.driver.core.Cluster$Builder.withScyllaCloudConnectionConfig(Cluster.java:1389) at org.apache.cassandra.stress.util.JavaDriverClient.connect(JavaDriverClient.java:181) at org.apache.cassandra.stress.settings.StressSettings.getJavaDriverClient(StressSettings.java:213) at org.apache.cassandra.stress.settings.SettingsSchema.createKeySpacesNative(SettingsSchema.java:84) at org.apache.cassandra.stress.settings.SettingsSchema.createKeySpaces(SettingsSchema.java:74) at org.apache.cassandra.stress.settings.StressSettings.maybeCreateKeyspaces(StressSettings.java:230) at org.apache.cassandra.stress.StressAction.run(StressAction.java:58) at org.apache.cassandra.stress.Stress.run(Stress.java:143) at org.apache.cassandra.stress.Stress.main(Stress.java:62) ```
da75271
to
2f5818d
Compare
(Rebased on current master after #271) |
Following the changes made in
scylladb/scylla-tools-java#369, dtest is now failing during
test_connectivity_with_cassandra_stress
with the following error: