NIFI-33: On failure, was attempting to remove non-existent file; fixed this

This commit is contained in:
Mark Payne 2014-12-15 15:02:44 -05:00
parent ece5ce1409
commit 7797184712
1 changed files with 1 additions and 1 deletions

View File

@ -549,7 +549,7 @@ public class FileSystemSwapManager implements FlowFileSwapManager {
swapQueue.getQueue().add(swapFile);
} else {
swapFile.delete();
swapTempFile.delete();
}
}
}