sanpwc commented on code in PR #1429:
URL: https://github.com/apache/ignite-3/pull/1429#discussion_r1050840213
##########
modules/runner/src/integrationTest/java/org/apache/ignite/internal/runner/app/ItIgniteNodeRestartTest.java:
##########
@@ -813,9 +812,9 @@ public void testOneNodeRestartWithGap() {
assertNotNull(table);
- assertThrowsWithCause(() -> table.keyValueView().get(null,
Tuple.create().set("id", 0)), TimeoutException.class);
+ assertThrows(TransactionException.class, () ->
table.keyValueView().get(null, Tuple.create().set("id", 0)));
Review Comment:
I don't think so, because several different causes are possible:
ReplicationTimeout, TimeoutException, ReplicaUnavailable, ConnectRefuse, etc.
--
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]