Skip to content

Commit

Permalink
Test + version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
AsafMah committed Dec 15, 2022
1 parent dd9a1e3 commit cdfae86
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,8 @@ public void wellKnownKustoEndpoints_RandomKustoClustersTest() throws KustoClient
"https://stopt402210825t0408.automationtestworkspace402.kusto.azuresynapse.net",
"https://kustonryfjo5klvrh4.westeurope.kusto.windows.net",
"https://kustowwqgogzpseg6o.eastus2.kusto.windows.net",
"https://kustor3gjpwqum3olw.canadacentral.kusto.windows.net"
"https://kustor3gjpwqum3olw.canadacentral.kusto.windows.net",
"https://dflskfdslfkdslkdsfldfs.westeurope.kusto.data.microsoft.com",
}) {
{
validateEndpoint(c, DEFAULT_PUBLIC_LOGIN_URL);
Expand All @@ -142,13 +143,13 @@ public void wellKnownKustoEndpoints_RandomKustoClustersTest() throws KustoClient
}

// Test MFA endpoints
if (!c.contains("synapse")) {
if (!c.contains("synapse") && !c.contains("data.microsoft.com")) {
String clusterName = c.replace(".kusto.", ".kustomfa.");
validateEndpoint(clusterName, DEFAULT_PUBLIC_LOGIN_URL);
}

// Test dev endpoints
if (!c.contains("synapse")) {
if (!c.contains("synapse") && !c.contains("data.microsoft.com")) {
String clusterName = c.replace(".kusto.", ".kustodev.");
validateEndpoint(clusterName, DEFAULT_PUBLIC_LOGIN_URL);
}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
</developers>

<properties>
<revision>4.0.0</revision> <!-- CHANGE THIS to adjust project version-->
<revision>4.0.1</revision> <!-- CHANGE THIS to adjust project version-->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>11</java.version>
<!-- Use 1.0.6 for fasterxml v 2.12.x (good for databricks runtime 2.10.x) -->
Expand Down
2 changes: 1 addition & 1 deletion quickstart/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
</developers>

<properties>
<revision>4.0.0</revision> <!-- CHANGE THIS to match project version in the root (not technically parent) pom -->
<revision>4.0.1</revision> <!-- CHANGE THIS to match project version in the root (not technically parent) pom -->
<java.version>11</java.version>
<maven-jar-plugin.version>3.2.0</maven-jar-plugin.version>
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
Expand Down

0 comments on commit cdfae86

Please sign in to comment.