Github user jtstorck commented on the issue:
https://github.com/apache/nifi/pull/2988
I created a Windows 10 VM via VirtualBox on my mac. With a fresh install
of:
- java
```
java version "1.8.0_181"
Java(TM) SE Runtime Environment (build 1.8.0_181-b13)
Java HotSpot(TM) 64-Bit Server VM (build 25.181-b13, mixed mode)
```
- maven
```
Apache Maven 3.5.4 (1edded0938998edf8bf061f1ceb3cfdeccf443fe;
2018-06-17T11:33:14-07:00)
Maven home: C:\Users\Jeff\dev\apache-maven-3.5.4
Java version: 1.8.0_181, vendor: Oracle Corporation, runtime: C:\Program
Files\Java\jre1.8.0_181
Default locale: en_US, platform encoding: Cp1252
OS name: "windows 10", version: "10.0", arch: "amd64", family: "windows"
```
I'm running into a build issue, with some failing tests:
```
[ERROR] TestStandardProcessSession.testBatchQueuedHaveSameQueuedTime:1690
Queued times should not be equal.. Actual: 1536116092889
```
and quite a few `TestFileSystemRepository` tests due to issues in
setup/shutdown like the following:
```
[ERROR]
org.apache.nifi.controller.repository.TestFileSystemRepository.testBogusFile(org.apache.nifi.controller.repository.TestFileSystemRepository)
[ERROR] Run 1: TestFileSystemRepository.setup:84 Unable to delete
target\content_repository\1\1536116075082-1 expected null, but
was:<target\content_repository\1\1536116075082-1>
[ERROR] Run 2: TestFileSystemRepository.shutdown:94 NullPointer
```
This is probably due something related to running Windows in a VM and how I
created it and/or the virtual disk. Tomorrow morning I'll try building on my
Windows desktop to see if the same failures occur.
---