diff options
author | Bin Sun <bins@vmware.com> | 2018-03-30 10:44:35 +0800 |
---|---|---|
committer | Bin Sun <bins@vmware.com> | 2018-03-30 10:45:42 +0800 |
commit | 077d94ed3e2fb44c34fbe434418e491c80488077 (patch) | |
tree | e2252ba70f1c6c760657cf424caf1de4f0316f0a /vio/run.sh | |
parent | c0a677738bc2a1fe0364f976525a121a805a9838 (diff) |
Fix event listener deployment problem
Change-Id: I84f6cb8a20d76b9ed0e77644dd935dc523f920cc
Issue-ID: MULTICLOUD-149
Signed-off-by: Bin Sun <bins@vmware.com>
Diffstat (limited to 'vio/run.sh')
-rwxr-xr-x | vio/run.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -32,7 +32,7 @@ then else # nohup python manage.py runserver 0.0.0.0:9004 2>&1 & nohup uwsgi --http :9004 --module vio.wsgi --master --processes 4 & - nohup python vio/event_listener/server.py 2>&1 & + nohup python -m vio.event_listener.server 2>&1 & while [ ! -f $logDir/vio.log ]; do sleep 1 |