DaanHoogland commented on a change in pull request #3350: Get Diagnostics: 
Download logs and diagnostics data from SSVM, CPVM, Router
URL: https://github.com/apache/cloudstack/pull/3350#discussion_r357238510
 
 

 ##########
 File path: 
server/src/main/java/org/apache/cloudstack/diagnostics/DiagnosticsServiceImpl.java
 ##########
 @@ -92,13 +155,13 @@
 
         Map<String, String> detailsMap;
 
-        final Answer answer = agentManager.easySend(hostId, command);
+        Answer answer = agentManager.easySend(hostId, command);
 
-        if (answer != null && (answer instanceof DiagnosticsAnswer)) {
+        if (answer != null) {
             detailsMap = ((DiagnosticsAnswer) answer).getExecutionDetails();
             return detailsMap;
         } else {
-            throw new CloudRuntimeException("Failed to execute diagnostics 
command on remote host: " + answer.getDetails());
+            throw new CloudRuntimeException("Failed to execute diagnostics 
command on remote host: " + vmInstance.getHostName());
 
 Review comment:
   this can be a host, doesn't have to be a vmInstance, does it?

----------------------------------------------------------------
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:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to