From 7bcd74651695299fc8fb4e862401178203720788 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Sep 20 2024 17:40:40 +0000 Subject: determine_rhel_state: Fix missing phase check The string wasn't updated properly to include the MAINTENANCE phase lookup, so it broke detection of RHEL 8.10. Signed-off-by: Stephen Gallagher --- diff --git a/src/centpkg/utils.py b/src/centpkg/utils.py index 64cf59f..317b202 100644 --- a/src/centpkg/utils.py +++ b/src/centpkg/utils.py @@ -525,7 +525,7 @@ def determine_rhel_state( # Query the "package pages" API for the current active Y-stream release request_params = { - "phase__in": "{},{}".format( + "phase__in": "{},{},{}".format( pp_phase_devtestdoc, pp_phase_stabilization, pp_phase_maintenance ), "product__shortname": "rhel",