Skip to content

Commit

Permalink
fixing comments
Browse files Browse the repository at this point in the history
  • Loading branch information
geonexus committed Dec 9, 2015
1 parent 6d485a7 commit 1504c08
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ NOTE:
Supervisor provides an “event listener” to subscribe to “event notifications”.
The purpose of the event notification/subscription system is to provide a mechanism for
arbitrary code to be run (e.g. send an email, make an HTTP request, etc)
when some condition is met. That condition usually has to do with subprocess state.
when some condition is satisfied. That condition usually has to do with subprocess state.
For instance, you may want to notify someone via email when a process crashes and is restarted by Supervisor.
For more information check also the `Supervisor Documentation`__

Expand Down
12 changes: 5 additions & 7 deletions utils/facts_start
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,11 @@
#
# File to execute fiware-facts component
#
# __author__ = 'gjp'

NAME="fiware_facts" # Name of the application
SOCKFILE=/var/run/gunicorn.sock # we will communicte using this unix socket
USER=root # the user to run as
GROUP=root # the group to run as
NUM_WORKERS=3 # how many worker processes should Gunicorn spawn
NAME="fiware_facts" # Name of the application
SOCKFILE=/var/run/gunicorn.sock # we will communicate using this unix socket
USER=root # the user to run as
GROUP=root # the group to run as
NUM_WORKERS=3 # how many worker processes should Gunicorn spawn
DJANGO_WSGI_MODULE=facts.server:app # WSGI module name
LOCAL_IP=`ifconfig | grep -Eo 'inet (addr:)?([0-9]*\.){3}[0-9]*' | grep -Eo '([0-9]*\.){3}[0-9]*' | grep -v '127.0.0.1'`

Expand Down

0 comments on commit 1504c08

Please sign in to comment.