This is an automated email from the ASF dual-hosted git repository.
miroslav pushed a commit to branch issue/OAK-12112_unresolved_address
in repository https://gitbox.apache.org/repos/asf/jackrabbit-oak.git
The following commit(s) were added to
refs/heads/issue/OAK-12112_unresolved_address by this push:
new 000b89e6c8 OAK-12112 import UnresolvedAddressException
000b89e6c8 is described below
commit 000b89e6c8f21b234e581b7d9586d5b981a344bf
Author: smiroslav <[email protected]>
AuthorDate: Wed Feb 25 14:18:28 2026 +0100
OAK-12112 import UnresolvedAddressException
---
.../apache/jackrabbit/oak/segment/azure/AzureRepositoryLockTest.java | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git
a/oak-segment-azure/src/test/java/org/apache/jackrabbit/oak/segment/azure/AzureRepositoryLockTest.java
b/oak-segment-azure/src/test/java/org/apache/jackrabbit/oak/segment/azure/AzureRepositoryLockTest.java
index 3e0f82c645..10e8370d13 100644
---
a/oak-segment-azure/src/test/java/org/apache/jackrabbit/oak/segment/azure/AzureRepositoryLockTest.java
+++
b/oak-segment-azure/src/test/java/org/apache/jackrabbit/oak/segment/azure/AzureRepositoryLockTest.java
@@ -45,6 +45,7 @@ import reactor.core.publisher.Mono;
import java.io.IOException;
import java.net.URISyntaxException;
+import java.nio.channels.UnresolvedAddressException;
import java.security.InvalidKeyException;
import java.time.Duration;
import java.util.concurrent.Semaphore;
@@ -342,7 +343,7 @@ public class AzureRepositoryLockTest {
// Simulate DNS resolution failure wrapped in a RuntimeException (as
Netty/Reactor does)
RuntimeException dnsError = new RuntimeException(
"Connection failed",
- new java.nio.channels.UnresolvedAddressException());
+ new UnresolvedAddressException());
// Track if shutdown hook was called
AtomicBoolean shutdownCalled = new AtomicBoolean(false);