1
0

[HUDI-3043] Revert async cleaner leak commit to unblock CI failure (#4343)

* Revert "[HUDI-2959] Fix the thread leak of cleaning service (#4252)"
Reverting to unblock CI failure for now. will revisit this with the right fix
This commit is contained in:
Sivabalan Narayanan
2021-12-16 21:51:28 -05:00
committed by GitHub
parent 294d712948
commit 7e7ad1558c
5 changed files with 38 additions and 31 deletions

View File

@@ -98,11 +98,4 @@ public class CleanFunction<T> extends AbstractRichFunction
public void initializeState(FunctionInitializationContext context) throws Exception {
// no operation
}
@Override
public void close() throws Exception {
if (this.writeClient != null) {
this.writeClient.close();
}
}
}