elharo opened a new issue, #1994:
URL: https://github.com/apache/maven-resolver/issues/1994
**Affected version:** HEAD
**File:**
`maven-resolver-named-locks-ipc/src/main/java/org/eclipse/aether/named/ipc/IpcNamedLock.java:108-115`
```java
private void tryUnlock(String contextId) {
try {
client.unlock(contextId);
} catch (Exception e) {
// Best-effort cleanup
}
}
```
All exceptions from `unlock()` during timeout cleanup are silently
discarded. While documented as intentional, this can mask real IO/connectivity
issues.
Originally reported in #1944.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]