7ab8ee2118
The server in neutron.cmd.eventlet.api was almost exactly the same as neutron.cmd.eventlet.server.main_wsgi_pecan(). This patch just gets rid of the former and updates a bash script to reference the latter. Change-Id: Ib1ae1d4de9f61bf9eea7e3ceb7fd971195e452e3
48 lines
1.3 KiB
Bash
Executable File
48 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
# Copyright (c) 2015 Mirantis, Inc.
|
|
# All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
# A script useful to develop changes to the codebase. It launches the pecan
|
|
# API server and will reload it whenever the code changes if inotifywait is
|
|
# installed.
|
|
|
|
inotifywait --help >/dev/null 2>&1
|
|
if [[ $? -ne 1 ]]; then
|
|
USE_INOTIFY=0
|
|
else
|
|
USE_INOTIFY=1
|
|
fi
|
|
|
|
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )/../
|
|
source "$DIR/.tox/py27/bin/activate"
|
|
COMMAND="python -c 'from neutron.cmd.eventlet import server; server.main_wsgi_pecan()'"
|
|
|
|
function cleanup() {
|
|
kill $PID
|
|
exit 0
|
|
}
|
|
|
|
if [[ $USE_INOTIFY -eq 1 ]]; then
|
|
trap cleanup INT
|
|
while true; do
|
|
eval "$COMMAND &"
|
|
PID=$!
|
|
inotifywait -e modify -r $DIR/neutron/
|
|
kill $PID
|
|
done
|
|
else
|
|
eval $COMMAND
|
|
fi
|