Skip to content

Commit

Permalink
[CONJ-380] disable SSL tests when using maxscale
Browse files Browse the repository at this point in the history
  • Loading branch information
rusher committed Dec 14, 2016
1 parent f6fce4a commit 1ad92fa
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/test/java/org/mariadb/jdbc/SslTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ public class SslTest extends BaseTest {
*/
@BeforeClass
public static void enableCrypto() {
Assume.assumeFalse("MAXSCALE".equals(System.getenv("TYPE")));

try {
Field field = Class.forName("javax.crypto.JceSecurity").getDeclaredField("isRestricted");
field.setAccessible(true);
Expand Down

0 comments on commit 1ad92fa

Please sign in to comment.