Fix: Crashbug that was caused by an import of an
outdated module that was removed from Gevent 1.3 that
was released two days ago.
Change-Id: I44dff2b468456ed2c24fa8e326ebc535bb04344b
Signed-off-by: peusterm <manuel.peuster@uni-paderborn.de>
diff --git a/setup.py b/setup.py
index a28df09..94f632f 100755
--- a/setup.py
+++ b/setup.py
@@ -57,7 +57,8 @@
'requests',
'prometheus_client',
'ipaddress',
- 'simplejson'
+ 'simplejson',
+ 'gevent'
],
zip_safe=False,
entry_points={
diff --git a/src/emuvim/api/rest/rest_api_endpoint.py b/src/emuvim/api/rest/rest_api_endpoint.py
index 0539e7d..a980dc9 100755
--- a/src/emuvim/api/rest/rest_api_endpoint.py
+++ b/src/emuvim/api/rest/rest_api_endpoint.py
@@ -30,7 +30,7 @@
import threading
from flask import Flask
from flask_restful import Api
-from gevent.wsgi import WSGIServer
+from gevent.pywsgi import WSGIServer
# need to import total module to set its global variable dcs
import compute