Pearl1594 commented on a change in pull request #3919: Handle EOFException 
during VR Health Check
URL: https://github.com/apache/cloudstack/pull/3919#discussion_r386246346
 
 

 ##########
 File path: utils/src/main/java/com/cloud/utils/ssh/SshHelper.java
 ##########
 @@ -184,12 +185,11 @@ public static void scpTo(String host, int port, String 
user, File pemKeyFile, St
 
             sess.execCommand(command);
 
-            InputStream stdout = sess.getStdout();
-            InputStream stderr = sess.getStderr();
-
-            byte[] buffer = new byte[8192];
-            StringBuffer sbResult = new StringBuffer();
+            StreamGobbler stdout = new StreamGobbler(sess.getStdout());
+            StreamGobbler stderr = new StreamGobbler(sess.getStderr());
 
+            byte[] buffer = new byte[16384];
+            StringBuffer sbResult = new StringBuffer(214748364);
 
 Review comment:
   @rhtyd the number represents the number of characters that corresponds to 
200MB

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to