We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db6de51 commit 1bc5dfeCopy full SHA for 1bc5dfe
client-v2/src/test/java/com/clickhouse/client/HttpTransportTests.java
@@ -913,6 +913,9 @@ public void testBearerTokenAuth() throws Exception {
913
914
@Test(groups = { "integration" })
915
public void testJWTWithCloud() throws Exception {
916
+ if (!isCloud()) {
917
+ return; // only for cloud
918
+ }
919
String jwt = System.getenv("CLIENT_JWT");
920
try (Client client = newClient().useBearerTokenAuth(jwt).build()) {
921
try {
0 commit comments