You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ Quick links:
16
16
The library supports the following Java environments:
17
17
- Java 8 (or higher)
18
18
19
-
Current version - 1.14.4-beta
19
+
Current version - 1.14.3
20
20
21
21
You can find the changes for each version in the [change log](https://github.com/AzureAD/microsoft-authentication-library-for-java/blob/main/msal4j-sdk/changelog.txt).
22
22
@@ -28,13 +28,13 @@ Find [the latest package in the Maven repository](https://mvnrepository.com/arti
Copy file name to clipboardExpand all lines: msal4j-sdk/README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ Quick links:
16
16
The library supports the following Java environments:
17
17
- Java 8 (or higher)
18
18
19
-
Current version - 1.14.4-beta
19
+
Current version - 1.14.3
20
20
21
21
You can find the changes for each version in the [change log](https://github.com/AzureAD/microsoft-authentication-library-for-java/blob/master/changelog.txt).
22
22
@@ -28,13 +28,13 @@ Find [the latest package in the Maven repository](https://mvnrepository.com/arti
Copy file name to clipboardExpand all lines: msal4j-sdk/src/main/java/com/microsoft/aad/msal4j/AadInstanceDiscoveryProvider.java
+50-44Lines changed: 50 additions & 44 deletions
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ class AadInstanceDiscoveryProvider {
29
29
30
30
// For information of the current api-version refer: https://docs.microsoft.com/en-us/azure/virtual-machines/windows/instance-metadata-service#versioning
while (result == null && !interactiveRequest.futureReference().get().isCancelled()) {
212
+
while (result == null && !interactiveRequest.futureReference().get().isDone()) {
213
213
if (TimeUnit.MILLISECONDS.toSeconds(System.currentTimeMillis()) > expirationTime) {
214
214
LOG.warn(String.format("Listener timed out after %S seconds, no authorization code was returned from the server during that time.", timeFromParameters));
0 commit comments