You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
s_logger.debug(String.format("No Host ID was found when doing cleanup after Vmware migration for VM with ID = [%d] and Cluster destination ID = [%d]", vm.getId(), destClusterId));
2560
+
return;
2561
+
}
2562
+
if (srcHost == null) {
2563
+
s_logger.debug(String.format("When doing cleanup after Vmware migration could not find a host for the given ID = [%d]", srcHostId));
2564
+
return;
2565
+
}
2566
+
if (srcClusterId == null ) {
2567
+
s_logger.debug(String.format("No Cluster ID was found when doing cleanup after Vmware"));
2568
+
return;
2569
+
}
2570
+
if (srcClusterId.equals(destClusterId)) {
2571
+
s_logger.debug("Since the Source cluster ID [%s] is equal to the Destination cluster ID [%s] we do not need to proceed with the clean up after migration");
0 commit comments