Xuanwo commented on code in PR #6583: URL: https://github.com/apache/opendal/pull/6583#discussion_r2367190093
########## .github/services/memcached/memcached_with_auth/action.yml: ########## @@ -25,12 +25,25 @@ runs: shell: bash working-directory: fixtures/memcached run: docker compose -f docker-compose-memcached-with-auth.yml up -d --wait + + - name: Print memcached logs on failure + if: failure() + shell: bash + working-directory: fixtures/memcached + run: | + echo "==== docker ps -a ====" + docker ps -a + echo "==== docker logs memcached-memcached-1 ====" + docker logs memcached-memcached-1 || true + echo "==== docker compose logs ====" + docker compose -f docker-compose-memcached-with-auth.yml logs || true + Review Comment: Do we need to to remove this? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@opendal.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org