From 9bb8cd9da19a15aa91ee5ed8d3d6e9c6e7ee4029 Mon Sep 17 00:00:00 2001 From: Zhijiang Hu Date: Wed, 8 Nov 2017 23:45:46 -0500 Subject: [PATCH] monkey patch bugfix for eventlet >=0.20.1 Change-Id: I84d9c901b82c2b68ecb760ac4355bf2e0662f82e Signed-off-by: Zhijiang Hu --- code/daisy/daisy/cmd/api.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/code/daisy/daisy/cmd/api.py b/code/daisy/daisy/cmd/api.py index f8a0d0b0..ef57676c 100644 --- a/code/daisy/daisy/cmd/api.py +++ b/code/daisy/daisy/cmd/api.py @@ -37,7 +37,8 @@ from oslo_service import systemd # Monkey patch socket, time, select, threads eventlet.patcher.monkey_patch(all=False, socket=True, time=True, - select=True, thread=True, os=True) + select=True, thread=True, os=True, + subprocess=True) # If ../glance/__init__.py exists, add ../ to Python search path, so that # it will override what happens to be installed in /usr/(local/)lib/python...