mirror of https://github.com/apache/nifi.git
NIFI-33: On failure, was attempting to remove non-existent file; fixed this
This commit is contained in:
parent
ece5ce1409
commit
7797184712
|
@ -549,7 +549,7 @@ public class FileSystemSwapManager implements FlowFileSwapManager {
|
||||||
|
|
||||||
swapQueue.getQueue().add(swapFile);
|
swapQueue.getQueue().add(swapFile);
|
||||||
} else {
|
} else {
|
||||||
swapFile.delete();
|
swapTempFile.delete();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue