diff --git a/CHANGELOG.md b/CHANGELOG.md index 2398736..8b1c2f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## v4.0.6 (2022-07-21) +### Misc +- Make log clearer when PG is not ready for migrations. + ## v4.0.3 (2021-10-09) ### Fixes - Test python 3.10 in CI. diff --git a/VERSION b/VERSION index 7636e75..d13e837 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.0.5 +4.0.6 diff --git a/src/chartreuse/utils/alembic_migration_helper.py b/src/chartreuse/utils/alembic_migration_helper.py index 1d8f230..65b8ad7 100755 --- a/src/chartreuse/utils/alembic_migration_helper.py +++ b/src/chartreuse/utils/alembic_migration_helper.py @@ -96,7 +96,7 @@ def _wait_postgres_is_configured(self) -> None: sleep(2) raise Exception( f"I'm fed up! Waited {wait_timeout}s for postgres-operator to configure the" - f" Postgres database. Start by checking the postgres-operator logs." + f" Postgres database. Check the Postgres logs and then postgres-operator's for anything fishy." ) def _get_table_list(self) -> List[str]: