From fcdbc1a5e79c95abb2d4cb009ad73541c9d083d9 Mon Sep 17 00:00:00 2001 From: Grant Gainey Date: Mon, 3 Jun 2024 12:40:25 -0400 Subject: [PATCH] Teach tests to use vault.centos.org for now-archived centos8. fixes #3572. (cherry picked from commit 3126d632f53c2f0aef9805d53453e398fb6e5bc9) --- CHANGES/3572.bugfix | 1 + pulp_rpm/tests/functional/constants.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 CHANGES/3572.bugfix diff --git a/CHANGES/3572.bugfix b/CHANGES/3572.bugfix new file mode 100644 index 000000000..0a54dc837 --- /dev/null +++ b/CHANGES/3572.bugfix @@ -0,0 +1 @@ +Taught tests to find centos8 at vault.centos.org. diff --git a/pulp_rpm/tests/functional/constants.py b/pulp_rpm/tests/functional/constants.py index 5b866efa9..86da78e9b 100644 --- a/pulp_rpm/tests/functional/constants.py +++ b/pulp_rpm/tests/functional/constants.py @@ -611,8 +611,8 @@ AMAZON_MIRROR = "http://amazonlinux.us-east-1.amazonaws.com/2/core/latest/x86_64/mirror.list" CENTOS7_URL = "http://mirror.centos.org/centos-7/7/os/x86_64/" CENTOS7_OPSTOOLS_URL = "http://mirror.centos.org/centos/7/opstools/x86_64/" -CENTOS8_STREAM_BASEOS_URL = "http://mirror.centos.org/centos/8-stream/BaseOS/x86_64/os/" -CENTOS8_STREAM_APPSTREAM_URL = "http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/" +CENTOS8_STREAM_BASEOS_URL = "http://vault.centos.org/centos/8-stream/BaseOS/x86_64/os/" +CENTOS8_STREAM_APPSTREAM_URL = "http://vault.centos.org/centos/8-stream/AppStream/x86_64/os/" CENTOS9_STREAM_BASEOS_URL = "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/" CENTOS9_STREAM_APPSTREAM_URL = "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/" EPEL7_URL = "https://dl.fedoraproject.org/pub/epel/7/x86_64/"