Ludovic HOCHET created LOG4J2-1445:
--------------------------------------

             Summary: OnStartupTriggeringPolicyTest fails on Windows saying the 
file is used by another process
                 Key: LOG4J2-1445
                 URL: https://issues.apache.org/jira/browse/LOG4J2-1445
             Project: Log4j 2
          Issue Type: Bug
          Components: Core
    Affects Versions: 2.6.2
         Environment: Windows 10, JDK 8
            Reporter: Ludovic HOCHET
            Priority: Trivial


I saw some mention on the mailing list that some tests were failing on Windows 
and thought I'd give a look.
Effectively OnStartupTriggeringPolicyTest is failing on Windows with:
java.nio.file.FileSystemException: 
target\testfile: Le processus ne peut pas accéder au fichier car ce fichier est 
utilisé par un autre processus.
at 
org.apache.logging.log4j.core.appender.rolling.OnStartupTriggeringPolicyTest.cleanup(OnStartupTriggeringPolicyTest.java:77)

This can be solved by ending the test with:
manager.release();

And is due to RollingFileManagerFactory.createManager(..) using new 
FileOutputStream(..) which eventually calls Windows API CreateFileW(..) without 
the FILE_SHARE_DELETE flag which prevent other calls to delete the file.

(Files.newOutputStream(..) eventually does the opposite)



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: log4j-dev-unsubscr...@logging.apache.org
For additional commands, e-mail: log4j-dev-h...@logging.apache.org

Reply via email to