Skip to content

Commit

Permalink
fix the paths to binaries in venv for supervisor configs
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven-Eardley committed Nov 28, 2024
1 parent 9fd67b1 commit dfda935
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions deploy/supervisor/production-background/huey-events.conf
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[program:huey-events]
command=/home/cloo/doaj/bin/python /home/cloo/doaj/bin/huey_consumer.py -v portality.tasks.consumer_events_queue.events_queue
command=/home/cloo/doaj/venv/bin/python /home/cloo/doaj/venv/bin/huey_consumer.py -v portality.tasks.consumer_events_queue.events_queue
environment= DOAJENV=production
user=cloo
directory=/home/cloo/doaj/src/doaj
directory=/home/cloo/doaj
stdout_logfile=/var/log/supervisor/%(program_name)s-stdout.log
stderr_logfile=/var/log/supervisor/%(program_name)s-error.log
autostart=true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[program:huey-scheduled-long]
command=/home/cloo/doaj/bin/python /home/cloo/doaj/bin/huey_consumer.py -v portality.tasks.consumer_scheduled_long_queue.scheduled_long_queue
command=/home/cloo/doaj/venv/bin/python /home/cloo/doaj/venv/bin/huey_consumer.py -v portality.tasks.consumer_scheduled_long_queue.scheduled_long_queue
environment= DOAJENV=production
user=cloo
directory=/home/cloo/doaj/src/doaj
directory=/home/cloo/doaj
stdout_logfile=/var/log/supervisor/%(program_name)s-stdout.log
stderr_logfile=/var/log/supervisor/%(program_name)s-error.log
autostart=true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[program:huey-scheduled-short]
command=/home/cloo/doaj/bin/python /home/cloo/doaj/bin/huey_consumer.py -v portality.tasks.consumer_scheduled_short_queue.scheduled_short_queue
command=/home/cloo/doaj/venv/bin/python /home/cloo/doaj/venv/bin/huey_consumer.py -v portality.tasks.consumer_scheduled_short_queue.scheduled_short_queue
environment= DOAJENV=production
user=cloo
directory=/home/cloo/doaj/src/doaj
directory=/home/cloo/doaj
stdout_logfile=/var/log/supervisor/%(program_name)s-stdout.log
stderr_logfile=/var/log/supervisor/%(program_name)s-error.log
autostart=true
Expand Down
4 changes: 2 additions & 2 deletions deploy/supervisor/test/huey-events.conf
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[program:huey-events]
command=/home/cloo/doaj/bin/python /home/cloo/doaj/bin/huey_consumer.py -v portality.tasks.consumer_events_queue.events_queue
command=/home/cloo/doaj/venv/bin/python /home/cloo/doaj/venv/bin/huey_consumer.py -v portality.tasks.consumer_events_queue.events_queue
environment= DOAJENV=test
user=cloo
directory=/home/cloo/doaj/src/doaj
directory=/home/cloo/doaj
stdout_logfile=/var/log/supervisor/%(program_name)s-stdout.log
stderr_logfile=/var/log/supervisor/%(program_name)s-error.log
autostart=true
Expand Down
4 changes: 2 additions & 2 deletions deploy/supervisor/test/huey-scheduled-long.conf
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[program:huey-scheduled-long]
command=/home/cloo/doaj/bin/python /home/cloo/doaj/bin/huey_consumer.py -v portality.tasks.consumer_scheduled_long_queue.scheduled_long_queue
command=/home/cloo/doaj/venv/bin/python /home/cloo/doaj/venv/bin/huey_consumer.py -v portality.tasks.consumer_scheduled_long_queue.scheduled_long_queue
environment= DOAJENV=test
user=cloo
directory=/home/cloo/doaj/src/doaj
directory=/home/cloo/doaj
stdout_logfile=/var/log/supervisor/%(program_name)s-stdout.log
stderr_logfile=/var/log/supervisor/%(program_name)s-error.log
autostart=true
Expand Down
4 changes: 2 additions & 2 deletions deploy/supervisor/test/huey-scheduled-short.conf
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[program:huey-scheduled-short]
command=/home/cloo/doaj/bin/python /home/cloo/doaj/bin/huey_consumer.py -v portality.tasks.consumer_scheduled_short_queue.scheduled_short_queue
command=/home/cloo/doaj/venv/bin/python /home/cloo/doaj/venv/bin/huey_consumer.py -v portality.tasks.consumer_scheduled_short_queue.scheduled_short_queue
environment= DOAJENV=test
user=cloo
directory=/home/cloo/doaj/src/doaj
directory=/home/cloo/doaj
stdout_logfile=/var/log/supervisor/%(program_name)s-stdout.log
stderr_logfile=/var/log/supervisor/%(program_name)s-error.log
autostart=true
Expand Down

0 comments on commit dfda935

Please sign in to comment.