Skip to content

Commit

Permalink
Closes-Bug:#1400992 - Baremetal : UI should show proper error message…
Browse files Browse the repository at this point in the history
… when port creation fails

Change-Id: Ic9e22f703bf2732ac3ec4a82e05d8eb20dcfbb03
  • Loading branch information
sbavanasi committed Dec 10, 2014
1 parent e46fae9 commit 9a05875
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -313,6 +313,7 @@ function physicalInterfacesConfig() {
}

window.failureHandlerForVMICreation = function(xhr, status, error) {
showInfoWindow(error, status);
fetchData();
}

Expand Down Expand Up @@ -950,7 +951,7 @@ function physicalInterfacesConfig() {

window.failureHandlerForVNInternals = function(error){
var r = arguments;
showInfoWindow(r[0].responseText,r[2])
showInfoWindow(r[0].responseText,r[2]);
}

function fetchConfigurations() {
Expand Down

0 comments on commit 9a05875

Please sign in to comment.