This is an automated email from the ASF dual-hosted git repository.
tyrantlucifer pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-seatunnel.git
The following commit(s) were added to refs/heads/dev by this push:
new 9d1b29da8 [Hotfix][Connector-V2][Cassandra] Fix log content error
(#3366)
9d1b29da8 is described below
commit 9d1b29da8f7f2396b80b1b154c73d2276f4a72bc
Author: FWLamb <[email protected]>
AuthorDate: Thu Nov 10 14:24:06 2022 +0800
[Hotfix][Connector-V2][Cassandra] Fix log content error (#3366)
Co-authored-by: yangbinbin <[email protected]>
---
.../apache/seatunnel/connectors/seatunnel/cassandra/CassandraIT.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-cassandra-e2e/src/test/java/org/apache/seatunnel/connectors/seatunnel/cassandra/CassandraIT.java
b/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-cassandra-e2e/src/test/java/org/apache/seatunnel/connectors/seatunnel/cassandra/CassandraIT.java
index 9e54b914d..c42ff264d 100644
---
a/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-cassandra-e2e/src/test/java/org/apache/seatunnel/connectors/seatunnel/cassandra/CassandraIT.java
+++
b/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-cassandra-e2e/src/test/java/org/apache/seatunnel/connectors/seatunnel/cassandra/CassandraIT.java
@@ -241,7 +241,7 @@ public class CassandraIT extends TestSuiteBase implements
TestResource {
try {
session.execute(SimpleStatement.builder(String.format("truncate
table %s", SINK_TABLE)).setKeyspace(KEYSPACE).build());
} catch (Exception e) {
- throw new RuntimeException("Test clickhouse server image failed!",
e);
+ throw new RuntimeException("Test Cassandra server image failed!",
e);
}
}