tristantarrant commented on issue #3399:
URL: 
https://github.com/apache/logging-log4j2/issues/3399#issuecomment-2622418350

   I tried to replace the 
   
   ```java
   .computeIfAbsent(name, ignored -> new WeakReference<>(newLogger))
   ```
   with
   
   ```java
   .compute(name, (ignored, ref) -> (ref == null || ref.get() == null) ? new 
WeakReference<>(newLogger) : ref))
   ```
   
   but it doesn't solve the hanging threads.
   


-- 
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: notifications-unsubscr...@logging.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to