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 <sgallagh@redhat.com>
This commit is contained in:
Stephen Gallagher 2024-09-20 13:40:40 -04:00
parent 00e616bde5
commit 7bcd746516

View file

@ -525,7 +525,7 @@ def determine_rhel_state(
# Query the "package pages" API for the current active Y-stream release # Query the "package pages" API for the current active Y-stream release
request_params = { request_params = {
"phase__in": "{},{}".format( "phase__in": "{},{},{}".format(
pp_phase_devtestdoc, pp_phase_stabilization, pp_phase_maintenance pp_phase_devtestdoc, pp_phase_stabilization, pp_phase_maintenance
), ),
"product__shortname": "rhel", "product__shortname": "rhel",