summaryrefslogtreecommitdiffhomepage
path: root/bin
diff options
context:
space:
mode:
Diffstat (limited to 'bin')
-rwxr-xr-xbin/ryu-manager10
1 files changed, 5 insertions, 5 deletions
diff --git a/bin/ryu-manager b/bin/ryu-manager
index b1947680..2437275d 100755
--- a/bin/ryu-manager
+++ b/bin/ryu-manager
@@ -28,7 +28,7 @@ from ryu import log
log.early_init_log(logging.DEBUG)
from ryu import utils
-from ryu.app import wsapi
+from ryu.app import wsgi
from ryu.base.app_manager import AppManager
from ryu.controller import controller
@@ -58,10 +58,10 @@ def main():
thr = gevent.spawn_later(0, ctlr)
services.append(thr)
- # NOX webservice API
- ws = wsapi.wsapi()
- thr = gevent.spawn_later(0, ws)
- services.append(thr)
+ webapp = wsgi.start_service(app_mgr)
+ if webapp:
+ thr = gevent.spawn_later(0, webapp)
+ services.append(thr)
gevent.joinall(services)
app_mgr.close()