diff --git a/.github/workflows/run.yaml b/.github/workflows/run.yaml index 849907e..b9560a1 100644 --- a/.github/workflows/run.yaml +++ b/.github/workflows/run.yaml @@ -64,10 +64,7 @@ jobs: --config ${{ matrix.builder }}.conf \ --skip-steps=recovery-check \ --skip-suites=recovery \ - --delay-check \ ${{ matrix.branch }} - # TODO: Remove --delay-check once this is fixed: - # https://www.postgresql.org/message-id/flat/fddd1cd6-dc16-40a2-9eb5-d7fef2101488%40technowledgy.de - uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 if: always() with: diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 455b018..2f3b7aa 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -53,10 +53,7 @@ jobs: --from-source /mnt/source \ --config ${{ matrix.builder }}.conf \ --skip-steps=recovery-check \ - --skip-suites=recovery \ - --delay-check - # TODO: Remove --delay-check once this is fixed: - # https://www.postgresql.org/message-id/flat/fddd1cd6-dc16-40a2-9eb5-d7fef2101488%40technowledgy.de + --skip-suites=recovery - uses: actions/upload-artifact@5d5d22a31266ced268874388b861e4b58bb5c2f3 # v4.3.1 if: always() with: diff --git a/Dockerfile b/Dockerfile index 0f861ee..28bbfdd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -52,13 +52,10 @@ COPY docker-entrypoint.sh / COPY *.conf /usr/src ENTRYPOINT ["/docker-entrypoint.sh"] -# TODO: Remove --delay-check once this is fixed: -# https://www.postgresql.org/message-id/flat/fddd1cd6-dc16-40a2-9eb5-d7fef2101488%40technowledgy.de CMD [ \ "--test", \ "--config", \ "autoconf.conf", \ "--skip-steps=recovery-check", \ - "--skip-suites=recovery", \ - "--delay-check" \ + "--skip-suites=recovery" \ ] diff --git a/test.sh b/test.sh index c7ae460..5fe25b7 100755 --- a/test.sh +++ b/test.sh @@ -19,7 +19,4 @@ docker run --rm \ --config autoconf.conf \ --skip-steps=recovery-check \ --skip-suites=recovery \ - --delay-check \ "$@" - # TODO: Remove --delay-check once this is fixed: - # https://www.postgresql.org/message-id/flat/fddd1cd6-dc16-40a2-9eb5-d7fef2101488%40technowledgy.de