Skip to content

Commit

Permalink
Merge tag '20241128_path_for_supervisor' into develop
Browse files Browse the repository at this point in the history
Correct paths to binaries after refactor
  • Loading branch information
Steven-Eardley committed Nov 27, 2024
2 parents e534b41 + 38de887 commit 4d7b4e8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion deploy/supervisor/production/doaj.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[program:doaj]
command=/home/cloo/doaj/bin/gunicorn -c /home/cloo/doaj/deploy/doaj_gunicorn_config.py portality.app:app
command=/home/cloo/doaj/venv/bin/gunicorn -c /home/cloo/doaj/deploy/doaj_gunicorn_config.py portality.app:app
environment = DOAJENV=production
user=cloo
directory=/home/cloo/doaj
Expand Down
2 changes: 1 addition & 1 deletion deploy/supervisor/test/huey-long-running.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[program:huey-long-running]
command=/home/cloo/doaj/bin/python /home/cloo/doaj/bin/huey_consumer.py -v portality.tasks.consumer_long_running.long_running
command=/home/cloo/doaj/venv/bin/python /home/cloo/doaj/venv/bin/huey_consumer.py -v portality.tasks.consumer_long_running.long_running
environment= DOAJENV=test
user=cloo
directory=/home/cloo/doaj
Expand Down
2 changes: 1 addition & 1 deletion deploy/supervisor/test/huey-main.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[program:huey-main]
command=/home/cloo/doaj/bin/python /home/cloo/doaj/bin/huey_consumer.py -v portality.tasks.consumer_main_queue.main_queue
command=/home/cloo/doaj/venv/bin/python /home/cloo/doaj/venv/bin/huey_consumer.py -v portality.tasks.consumer_main_queue.main_queue
environment= DOAJENV=test
user=cloo
directory=/home/cloo/doaj
Expand Down
2 changes: 1 addition & 1 deletion production.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ EVENT_SEND_FUNCTION = "portality.events.shortcircuit.send_event"
PRESERVATION_PAGE_UNDER_MAINTENANCE = False

# Ensure all app machines can contact background server first with redis-cli -h <ip> e.g. redis-cli -h 10.131.191.148
REDIS_HOST = '10.131.191.148'
REDIS_HOST = '10.131.191.148' # doaj-background-1

0 comments on commit 4d7b4e8

Please sign in to comment.