v2.0.4: Fix webhook error handling and logging
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 41s

- Webhooks now return 200 OK even on errors (to prevent retries)
- Improved error handling with proper JSON responses
- Enhanced logging for webhook debugging
- Supervisor logs now visible in docker logs (stdout/stderr)
- Fixed TodoistIntegration error display in UI
This commit is contained in:
poignatov
2026-01-01 18:50:55 +03:00
parent 7704de334c
commit edc29fbd97
5 changed files with 140 additions and 22 deletions

View File

@@ -1,6 +1,7 @@
[supervisord]
nodaemon=true
logfile=/var/log/supervisor/supervisord.log
logfile=/dev/stdout
logfile_maxbytes=0
pidfile=/var/run/supervisord.pid
user=root
@@ -17,8 +18,11 @@ command=/app/backend/main
directory=/app/backend
autostart=true
autorestart=true
stderr_logfile=/var/log/supervisor/backend.err.log
stdout_logfile=/var/log/supervisor/backend.out.log
# Логи идут в stdout/stderr контейнера для docker logs
stderr_logfile=/dev/stderr
stdout_logfile=/dev/stdout
stderr_logfile_maxbytes=0
stdout_logfile_maxbytes=0
priority=20
# Переменные окружения будут переданы из docker run --env-file
# PORT по умолчанию 8080 внутри контейнера