fix: use different port for temporary postgres (#2743)

`test_tenant_relocation` ends up starting a temporary postgres instance with a fixed port. the change makes the port configurable at scripts/export_import_between_pageservers.py and uses that in test_tenant_relocation.
This commit is contained in:
Joonas Koivunen
2022-11-02 20:37:48 +02:00
committed by GitHub
parent a0a74868a4
commit 5112142997
3 changed files with 25 additions and 9 deletions

View File

@@ -6,6 +6,6 @@ set -euox pipefail
echo 'Reformatting Rust code'
cargo fmt
echo 'Reformatting Python code'
poetry run isort test_runner
poetry run flake8 test_runner
poetry run black test_runner
poetry run isort test_runner scripts
poetry run flake8 test_runner scripts
poetry run black test_runner scripts