mirror of
https://git.centos.org/centos/centpkg.git
synced 2025-02-23 08:12:55 +00:00
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:
parent
00e616bde5
commit
7bcd746516
1 changed files with 1 additions and 1 deletions
|
@ -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",
|
||||
|
|
Loading…
Add table
Reference in a new issue