Skip to content

Commit

Permalink
🚑 Fixed upgrade check not blocking the actual upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
sergei-maertens committed Jan 10, 2025
1 parent 1fab3ce commit e2f5b43
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ Changelog

The Dutch version of this changelog can be found :ref:`here <changelog-nl>`.

3.0.1 (2025-01-10)
==================

Hotfix release addressing a potential upgrade issue.

* Fixed an upgrade check not blocking the database migrations from starting.

3.0.0 "Heerlijkheid" (2025-01-09)
=================================
Expand Down
4 changes: 2 additions & 2 deletions bin/check_api_groups_null.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def check_for_null_services_in_api_groups():
problems.append((*problem, "No Catalogi API service configured"))

if not problems:
return False
return True

print(
"Can't upgrade yet - some API group services are not properly configured yet."
Expand All @@ -63,7 +63,7 @@ def check_for_null_services_in_api_groups():
headers=("API group type", "ID", "Name", "Problem"),
)
)
return True
return False


def main(skip_setup=False) -> bool:
Expand Down

0 comments on commit e2f5b43

Please sign in to comment.