提交 2c215001 编写于 作者: R Rui Fu 提交者: Sijie Guo

prevent fd leakage when WorkerUtils.downloadFromBookkeeper (#4970)

Fixes #4969

### Motivation

close `FileOutputStream` after `WorkerUtils.downloadFromBookkeeper`
上级 93d95c74
......@@ -219,10 +219,14 @@ public class FunctionActioner {
if(downloadFromHttp) {
FunctionCommon.downloadFromHttpUrl(pkgLocationPath, tempPkgFile);
} else {
FileOutputStream tempPkgFos = new FileOutputStream(tempPkgFile);
WorkerUtils.downloadFromBookkeeper(
dlogNamespace,
new FileOutputStream(tempPkgFile),
tempPkgFos,
pkgLocationPath);
if (tempPkgFos != null) {
tempPkgFos.close();
}
}
try {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册