diff --git a/README.md b/README.md index f265263..f9b8c62 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,6 @@ PYTHONPATH="../../lib/" python app.py in one, and ``` cd src/components/ -PYTHONPATH="../../lib/" python event_handler_example.py +PYTHONPATH="../../lib/" python event_handler_main.py ``` in the other. diff --git a/src/event_handlers/event_handler_example.py b/src/event_handlers/event_handler_main.py similarity index 100% rename from src/event_handlers/event_handler_example.py rename to src/event_handlers/event_handler_main.py diff --git a/supervisord.conf b/supervisord.conf index e3da7fa..447a9dd 100644 --- a/supervisord.conf +++ b/supervisord.conf @@ -8,6 +8,6 @@ pidfile = /tmp/supervisord.pid directory=%(ENV_TFW_APP_DIR)s command=env python app.py -[program:event_handler_example] +[program:event_handler_main] directory=%(ENV_TFW_EVENT_HANDLERS_DIR)s -command=env python event_handler_example.py +command=env python event_handler_main.py