echauchot commented on code in PR #20184:
URL: https://github.com/apache/flink/pull/20184#discussion_r919831064
##########
flink-connectors/flink-connector-cassandra/src/test/java/org/apache/flink/streaming/connectors/cassandra/CassandraConnectorITCase.java:
##########
@@ -458,7 +464,10 @@ protected Tuple3<String, Integer, Integer>
generateValue(int counter, int checkp
protected void verifyResultsIdealCircumstances(
CassandraTupleWriteAheadSink<Tuple3<String, Integer, Integer>>
sink) {
- ResultSet result = session.execute(injectTableName(SELECT_DATA_QUERY));
+ ResultSet result =
+ session.execute(
+ new SimpleStatement(injectTableName(SELECT_DATA_QUERY))
+ .setReadTimeoutMillis(READ_TIMEOUT_MILLIS));
Review Comment:
@zentol there has been several of these timeout issues that make the build
flaky. @MartijnVisser pinged me to quickly solve this issue. Tell me if you
need anything more on this PR.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]