Fix: Crashbug that was caused by an import of an 43/6143/1
authorpeusterm <manuel.peuster@uni-paderborn.de>
Mon, 14 May 2018 16:52:00 +0000 (18:52 +0200)
committerpeusterm <manuel.peuster@uni-paderborn.de>
Mon, 14 May 2018 16:52:00 +0000 (18:52 +0200)
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>
setup.py
src/emuvim/api/rest/rest_api_endpoint.py

index a28df09..94f632f 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -57,7 +57,8 @@ setup(name='emuvim',
           'requests',
           'prometheus_client',
           'ipaddress',
-          'simplejson'
+          'simplejson',
+          'gevent'
       ],
       zip_safe=False,
       entry_points={
index 0539e7d..a980dc9 100755 (executable)
@@ -30,7 +30,7 @@ import logging
 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