Django_Huey: Не удалось установить соединение

Я продолжаю получать сообщение "connection failed:

".

соединение с сервером по адресу "127.0.0.1", порт 5432 не удалось: FATAL: password authentication failed for user "root" connection to server". при запуске моей задачи в продакшене. Этого не происходит в локальной разработке. Я попытался решить проблему, добавив соединение с Postgres db. к супервизору, но ошибка по-прежнему сохраняется.

Django_huey версия: 1.1.2

@db_periodic_task(crontab(minute='*/1'), queue='application')
def parcel_expiration_task():
  # current date and time
  current_timestamp = timezone.localtime(timezone.now())

  # get all event
  get_events = Event.objects.order_by('-creation_time').filter(
     time_ends__lt=current_timestamp
  )

  if get_events.exists():
      ...
  
  [program:access]
  command='...'
  user='...'
  autostart=true
  autorestart=true
  redirect_stderr = true                                               
  stdout_logfile = /etc/supervisor/realtime.log
  environment=DATABASE_URL="postgresql://...:...@localhost:5432/..."
Вернуться на верх