1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-16 22:50:10 +03:00

Added flush to OutputStream (doesn't fix the OutOfMemory bug)

git-svn-id: http://svn.opennebula.org/one/trunk@481 3034c82b-c49b-4eb3-8279-a7acafdc01c0
This commit is contained in:
Constantino Vázquez Blanco 2009-04-22 14:44:31 +00:00
parent 25f5065070
commit 1deda2d723

View File

@ -110,6 +110,7 @@ public class TMClone
while ((len = in.read(buf)) > 0)
{
out.write(buf, 0, len);
out.flush();
}
conn.getResponseMessage();
conn.disconnect();