DestroyNetwork: fixed regression bug - the call always returns false after finishing the transaction. Return true instead.

This commit is contained in:
Alena Prokharchyk 2013-10-31 13:51:25 -07:00
parent b436a82392
commit 9c773fbd68

View File

@ -2187,7 +2187,7 @@ public class NetworkOrchestrator extends ManagerBase implements NetworkOrchestra
}
}
});
return false;
return true;
} catch ( CloudRuntimeException e ) {
s_logger.error("Failed to delete network", e);
return false;