Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
acceptance: update how we build the
python
compose image
Up until this point we were using `apt install postgresql-client` to install the `psql` binary in this image. Because the `postgresql-client` `apt` package was apparently updated to a later version of `postgres` last week that includes [this change](https://git.postgresql.org/gitweb/?p=postgresql.git;a=commitdiff;h=a59c79564bdc209a5bc7b02d706f0d7352eb82fa), the `TestComposeGSSPython` `acceptance` test started failing with the following error: ``` psql: error: private key file "/certs/client.root.key" must be owned by the current user or root ``` Less recent versions of `psql` are more permissive about cert permissions, so we work around this by manually installing postgres 11. Release note: None Release justification: Test-only change
- Loading branch information