Skip to content

Commit 83529fe

Browse files
bernd-wiswedelenplotz
authored andcommitted
AP-22244: (flaky test fix): do not complain in (cleared) Buffer if temp
folder is gone AP-22244 (Fix IOException: Workflow temp directory has been deleted)
1 parent 3e71198 commit 83529fe

File tree

1 file changed

+14
-0
lines changed
  • org.knime.core/src/eclipse/org/knime/core/data/container

1 file changed

+14
-0
lines changed

org.knime.core/src/eclipse/org/knime/core/data/container/Buffer.java

+14
Original file line numberDiff line numberDiff line change
@@ -2019,6 +2019,13 @@ synchronized void clear() {
20192019
m_lifecycle.onClear();
20202020
}
20212021

2022+
/** @return true if {@link #clear()} has been called */
2023+
boolean isCleared() {
2024+
synchronized (m_isClearedLock) {
2025+
return m_isClearedLock.booleanValue();
2026+
}
2027+
}
2028+
20222029
private static final int MAX_FILES_TO_CREATE_BEFORE_GC = 10000;
20232030

20242031
private static final AtomicInteger FILES_CREATED_COUNTER = new AtomicInteger(0);
@@ -2925,6 +2932,10 @@ public final Void call() throws Exception {
29252932
/** Buffer was already discarded (no rows added) */
29262933
return null;
29272934
}
2935+
if (buffer.isCleared()) { // added as part of AP-22244 (especially noted during test execution)
2936+
LOGGER.debug("Attempting to swap a Buffer that has been cleared ... will ignore.");
2937+
return null;
2938+
}
29282939
// START debug AP-13181 buffers not being cleared when workflow is closed and cleaned up
29292940
if (m_nodeContext != null) {
29302941
final WorkflowManager wfm = m_nodeContext.getWorkflowManager();
@@ -2933,6 +2944,9 @@ public final Void call() throws Exception {
29332944
if (workflowContext != null) {
29342945
final File tempLocation = workflowContext.getTempLocation();
29352946
if (!tempLocation.isDirectory()) {
2947+
if (buffer.isCleared()) {
2948+
return null; // clearing happens asynchronously
2949+
}
29362950
throw new IOException(
29372951
"Workflow temp directory " + tempLocation.toString() + " has been deleted.");
29382952
}

0 commit comments

Comments
 (0)