The plausible custom tier (first executed in build 237 — install always failed before) revealed _register_site asserting out == site against psql output that includes the INSERT 0 1 command tag: -t (tuples-only) suppresses headers/footers but NOT command tags. Both event-tracking roundtrip tests fail on it.
Fix: psql -q, which suppresses the tags. Verified against the recipe's db container: with -q the INSERT+SELECT statement pair returns exactly the site domain.
Pair: recipe-maintainers/plausible#3 (its !testme custom tier needs this to go green; the restore-tier fixes are on the recipe PR itself — head 270c840).
The plausible custom tier (first executed in build 237 — install always failed before) revealed `_register_site` asserting `out == site` against psql output that includes the `INSERT 0 1` command tag: `-t` (tuples-only) suppresses headers/footers but NOT command tags. Both event-tracking roundtrip tests fail on it.
Fix: `psql -q`, which suppresses the tags. Verified against the recipe's db container: with `-q` the INSERT+SELECT statement pair returns exactly the site domain.
Pair: recipe-maintainers/plausible#3 (its `!testme` custom tier needs this to go green; the restore-tier fixes are on the recipe PR itself — head `270c840`).
psql -tAc still prints INSERT/CREATE command tags (e.g. "INSERT 0 1"), so
_register_site asserted out == site against "INSERT 0 1\nsite" and both
event-tracking roundtrip tests failed on their very first run (build 237 —
the custom tier had never executed before; install always failed earlier).
-q suppresses the tags; verified against the recipe db container.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
The plausible custom tier (first executed in build 237 — install always failed before) revealed
_register_siteassertingout == siteagainst psql output that includes theINSERT 0 1command tag:-t(tuples-only) suppresses headers/footers but NOT command tags. Both event-tracking roundtrip tests fail on it.Fix:
psql -q, which suppresses the tags. Verified against the recipe's db container: with-qthe INSERT+SELECT statement pair returns exactly the site domain.Pair: recipe-maintainers/plausible#3 (its
!testmecustom tier needs this to go green; the restore-tier fixes are on the recipe PR itself — head270c840).