Skip to content

Commit b2f951c

Browse files
committed
IGNITE-26148 (minor) Typo.
1 parent e95f560 commit b2f951c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/jdbc/src/integrationTest/java/org/apache/ignite/jdbc/ItJdbcWithConnectionPoolBaseTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,10 +141,10 @@ void testVisibilityOfChangesBetweenConnections() throws Exception {
141141
public void multipleConnections() {
142142
int connectionsCount = 100;
143143

144-
CyclicBarrier barier = new CyclicBarrier(connectionsCount);
144+
CyclicBarrier barrier = new CyclicBarrier(connectionsCount);
145145

146146
Callable<Integer> worker = () -> {
147-
barier.await(5, TimeUnit.SECONDS);
147+
barrier.await(5, TimeUnit.SECONDS);
148148

149149
try (Connection conn = dataSource.getConnection()) {
150150
try (Statement stmt = conn.createStatement();

0 commit comments

Comments
 (0)