Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/main/java/org/openbaton/nse/beans/core/CoreModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -401,9 +401,9 @@ private String getNeutronEndpoint(OSClient os, VimInstance vimInstance, String t

private Map<String, String> getComputeNodeMap(OSClient os) {
Map<String, String> computenode_ip_map = new HashMap<String, String>();
for (Hypervisor h : os.compute().hypervisors().list()) {
computenode_ip_map.put(h.getHypervisorHostname(), h.getHostIP());
}
// for (Hypervisor h : os.compute().hypervisors().list()) {
// computenode_ip_map.put(h.getHypervisorHostname(), h.getHostIP());
// }
return computenode_ip_map;
}

Expand Down