Change-Id: I600f42489c95a54b8a70ca1978d6b039fe945ebe
Issue-ID: VFC-1336
Signed-off-by: yangyan <yangyanyj@chinamobile.com>
swagger-spec-validator>=2.1.0
# for onap logging
-onappylog>=1.0.6
\ No newline at end of file
+onappylog>=1.0.6
+
+# uwsgi for parallel processing
+uwsgi
\ No newline at end of file
mkdir -p $logDir
fi
-nohup python manage.py runserver 0.0.0.0:8806 > /dev/null &
+# nohup python manage.py runserver 0.0.0.0:8806 > /dev/null &
+nohup uwsgi --http :8806 -t 120 --module lcm.wsgi --master --processes 4 &
while [ ! -f $logDir/runtime_catalog.log ]; do
sleep 1
# See the License for the specific language governing permissions and
# limitations under the License.
-ps auxww | grep "manage.py runserver 0.0.0.0:8806" | awk '{print $2}' | xargs kill -9
+# ps auxww | grep "manage.py runserver 0.0.0.0:8806" | awk '{print $2}' | xargs kill -9
+ps auxww |grep 'uwsgi --http :8806 --module lcm.wsgi --master' |awk '{print $2}' |xargs kill -9