mirror of https://github.com/apache/cloudstack.git
Fix CID 1116497 Resource leak
This commit is contained in:
parent
5c29f3ffd7
commit
cc913cf0bb
|
|
@ -307,6 +307,11 @@ public class ConsoleProxy {
|
|||
s_logger.error(e.toString(), e);
|
||||
}
|
||||
}
|
||||
try {
|
||||
confs.close();
|
||||
} catch (IOException e) {
|
||||
s_logger.error("Failed to close consolepropxy.properties : " + e.toString(), e);
|
||||
}
|
||||
|
||||
start(conf);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue