Fixing gunicorn dependency and README

Adding eventlet, a dependency for gunicorn.
Updating the docs with the correct config file name.

Change-Id: Ia1bb2d90c4454cab510bdf3ab25d72868e4962cd
This commit is contained in:
Venkat Sundaram 2015-11-18 20:29:04 -07:00 committed by Witold Bedyk
parent 8c0864a001
commit c9e93c8f85
2 changed files with 5 additions and 4 deletions

View File

@ -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.
# under the License.

View File

@ -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
simport
eventlet>=0.9.7