Examples of OvsTunnelNetworkVO


Examples of com.cloud.network.ovs.dao.OvsTunnelNetworkVO

    @DB
    private void handleDestroyBridgeAnswer(Answer ans,
            long host_id, long network_id) {

        if (ans.getResult()) {
            OvsTunnelNetworkVO lock =
                    _tunnelNetworkDao.acquireInLockTable(Long.valueOf(1));
            if (lock == null) {
                s_logger.warn("failed to lock ovs_tunnel_network," +
                        "remove record");
                return;
            }

            _tunnelNetworkDao.removeByFromNetwork(host_id, network_id);
            _tunnelNetworkDao.releaseFromLockTable(lock.getId());

            s_logger.debug(String.format("Destroy bridge for" +
                    "network %1$s successful", network_id));
        } else {
            s_logger.debug(String.format("Destroy bridge for" +
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.