Try to fix VirtualBox create test.

This commit is contained in:
Jeremy
2015-01-20 15:28:40 -07:00
parent 984d47f9c8
commit 17f6223fb1
7 changed files with 29 additions and 10 deletions

View File

@ -35,7 +35,6 @@ from .modules.port_manager import PortManager
# TODO: get rid of * have something generic to automatically import handlers so the routes can be found
from gns3server.handlers import *
from gns3server.handlers.virtualbox_handler import VirtualBoxHandler
import logging
log = logging.getLogger(__name__)
@ -133,6 +132,9 @@ class Server:
Starts the server.
"""
logger = logging.getLogger("asyncio")
logger.setLevel(logging.WARNING)
# TODO: SSL support for Rackspace cloud integration (here or with nginx for instance).
self._loop = asyncio.get_event_loop()
app = aiohttp.web.Application()