diff --git a/.github/workflows/ci-testing-deploy.yml b/.github/workflows/ci-testing-deploy.yml index 9c8aff9de310..489dd098ea71 100644 --- a/.github/workflows/ci-testing-deploy.yml +++ b/.github/workflows/ci-testing-deploy.yml @@ -1904,19 +1904,23 @@ jobs: - name: test run: ./ci/github/system-testing/e2e.bash test - name: dump docker logs + if: ${{ failure() }} id: docker_logs_dump run: ./ci/github/system-testing/e2e.bash dump_docker_logs - name: upload docker logs + if: ${{ failure() }} uses: actions/upload-artifact@v4 with: name: ${{ github.job }}_docker_logs path: ./tests/e2e/test_failures - name: upload screenshots + if: ${{ failure() }} uses: actions/upload-artifact@v4 with: name: ${{ github.job }}_screenshots path: tests/e2e/screenshots - name: upload e2e logs + if: ${{ failure() }} uses: actions/upload-artifact@v4 with: name: ${{ github.job }}_logs @@ -1956,14 +1960,17 @@ jobs: run: | ./ci/github/system-testing/e2e-playwright.bash test - name: dump docker logs + if: ${{ failure() }} id: docker_logs_dump run: ./ci/github/system-testing/e2e-playwright.bash dump_docker_logs - name: upload docker logs + if: ${{ failure() }} uses: actions/upload-artifact@v4 with: name: ${{ github.job }}_docker_logs path: ./tests/e2e-playwright/test_failures - name: upload tracing if failed + if: ${{ failure() }} uses: actions/upload-artifact@v4 with: name: ${{ github.job }}_tracing diff --git a/packages/models-library/src/models_library/rabbitmq_messages.py b/packages/models-library/src/models_library/rabbitmq_messages.py index 3be08148628e..d6c8135eb99d 100644 --- a/packages/models-library/src/models_library/rabbitmq_messages.py +++ b/packages/models-library/src/models_library/rabbitmq_messages.py @@ -325,4 +325,4 @@ class ComputationalPipelineStatusMessage(RabbitMessageBase, ProjectMessageBase): run_result: RunningState def routing_key(self) -> str | None: - return f"{self.project_id}" + return f"{self.project_id}.all_nodes"