vishesh92 commented on code in PR #10641:
URL: https://github.com/apache/cloudstack/pull/10641#discussion_r2401045794


##########
server/src/main/java/com/cloud/vm/UserVmManagerImpl.java:
##########
@@ -778,8 +778,13 @@ protected void runInContext() {
                 Answer answer = _agentMgr.send(hostId, cmd);
                 if (answer.getResult()) {
                     String vmIp = answer.getDetails();
-
-                    if (NetUtils.isValidIp4(vmIp)) {
+                    if (null == vmIp) {

Review Comment:
   ```suggestion
                       if (vmIp == null) {
   ```



-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to