From 7bcd74651695299fc8fb4e862401178203720788 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Fri, 20 Sep 2024 13:40:40 -0400 Subject: [PATCH] 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 --- src/centpkg/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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",