Skip to content

Commit

Permalink
constructor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
georgebanasios committed Dec 8, 2024
1 parent 2798849 commit 24590b6
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ public CloudInfo() {
this.loginMfaRequired = DEFAULT_CLOUD.isLoginMfaRequired();
this.loginEndpoint = DEFAULT_CLOUD.getLoginEndpoint();
this.kustoClientAppId = DEFAULT_CLOUD.getKustoClientAppId();
this.kustoClientRedirectUri = DEFAULT_CLOUD.kustoClientRedirectUri;
this.kustoServiceResourceId = DEFAULT_CLOUD.kustoServiceResourceId;
this.firstPartyAuthorityUrl = DEFAULT_CLOUD.firstPartyAuthorityUrl;
this.kustoClientRedirectUri = DEFAULT_CLOUD.getKustoClientRedirectUri();
this.kustoServiceResourceId = DEFAULT_CLOUD.getKustoServiceResourceId();
this.firstPartyAuthorityUrl = DEFAULT_CLOUD.getFirstPartyAuthorityUrl();
}

public static void manuallyAddToCache(String clusterUrl, Mono<CloudInfo> cloudInfoMono) throws URISyntaxException {
Expand Down

0 comments on commit 24590b6

Please sign in to comment.