From: Vsevolod Stakhov Date: Thu, 23 Oct 2025 10:23:20 +0000 (+0100) Subject: [Fix] Use static encryption keys and improve log collection X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0f0cd1106a58ace681288ca2123a535f99054c4f;p=thirdparty%2Frspamd.git [Fix] Use static encryption keys and improve log collection - Replace dynamic key generation with static keys to avoid LD_LIBRARY_PATH issues - Add fallback log collection using direct docker logs commands - Ensure complete log capture from all containers --- diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 46330a6c0d..f828ccaae8 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -217,7 +217,11 @@ jobs: if: always() working-directory: test/integration run: | - docker compose logs > docker-compose-logs.txt + echo "=== Collecting logs from all services ===" + docker compose logs --no-color > docker-compose-logs.txt 2>&1 || true + echo "=== Direct container logs ===" + docker logs rspamd-main >> docker-compose-logs.txt 2>&1 || true + docker logs rspamd-redis >> docker-compose-logs.txt 2>&1 || true - name: Stop Docker Compose if: always()