From c9e93c8f8571f2ff79faaad58f53c78a71dcf263 Mon Sep 17 00:00:00 2001 From: Venkat Sundaram Date: Wed, 18 Nov 2015 20:29:04 -0700 Subject: [PATCH] Fixing gunicorn dependency and README Adding eventlet, a dependency for gunicorn. Updating the docs with the correct config file name. Change-Id: Ia1bb2d90c4454cab510bdf3ab25d72868e4962cd --- README.md | 6 +++--- requirements.txt | 3 ++- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ae39d156..5b24c49a 100644 --- a/README.md +++ b/README.md @@ -102,13 +102,13 @@ To start the server, run the following command: Running the server in foreground mode ```sh gunicorn -k eventlet --worker-connections=2000 --backlog=1000 - --paste /etc/monasca/log-api.ini + --paste /etc/monasca/log-api-config.ini ``` Running the server as daemons ```sh gunicorn -k eventlet --worker-connections=2000 --backlog=1000 - --paste /etc/monasca/log-api.ini -D + --paste /etc/monasca/log-api-config.ini -D ``` To check if the code follows python coding style, run the following command @@ -140,4 +140,4 @@ directory of this project # 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. \ No newline at end of file + # under the License. diff --git a/requirements.txt b/requirements.txt index 93e6a8fa..7bcb37f8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,4 +12,5 @@ pbr>=1.6.0,<2.0 six>=1.9.0 kafka-python>=0.9.3,<0.9.4 simplejson>=3.8.0 -simport \ No newline at end of file +simport +eventlet>=0.9.7