1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-28 03:08:14 +00:00

Fix freezing issues on Windows.

This commit is contained in:
grossmj 2014-03-30 16:25:56 -06:00
parent 30c465b51e
commit bb2c25da5c
2 changed files with 6 additions and 3 deletions

View File

@ -18,10 +18,10 @@
import sys
from .base import IModule
from .dynamips import Dynamips
from .iou import IOU
MODULES = [Dynamips]
if sys.platform.startswith("linux"):
# IOU runs only on Linux
from .iou import IOU
MODULES.append(IOU)

View File

@ -19,6 +19,7 @@
Dynamips server module.
"""
import sys
import os
import base64
import tempfile
@ -116,6 +117,8 @@ class Dynamips(IModule):
self._dynamips = ""
self._default_host = "0.0.0.0"
if not sys.platform.startswith("win32"):
#FIXME: pickle issues Windows
self._callback = self.add_periodic_callback(self._check_hypervisors, 5000)
self._callback.start()