Skip to content

Commit

Permalink
Update enclave testing to 3 servers only (#2462)
Browse files Browse the repository at this point in the history
  • Loading branch information
lilgreenbird committed Jul 2, 2024
1 parent 9307051 commit 3db47e5
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ public static void testBasicConnection(String cString, String protocol) throws E
AbstractTest.updateDataSource(cString, dsPool);

try (Connection con1 = dsLocal.getConnection(); Connection con2 = dsXA.getConnection();
Connection con3 = dsPool.getConnection(); Connection con4 = PrepUtil.getConnection(cString)) {
Connection con3 = dsPool.getConnection()) {
if (TestUtils.isAEv2(con1)) {
verifyEnclaveEnabled(con1, protocol);
}
Expand All @@ -240,9 +240,6 @@ public static void testBasicConnection(String cString, String protocol) throws E
if (TestUtils.isAEv2(con3)) {
verifyEnclaveEnabled(con3, protocol);
}
if (TestUtils.isAEv2(con4)) {
verifyEnclaveEnabled(con4, protocol);
}
}
}

Expand Down

0 comments on commit 3db47e5

Please sign in to comment.