diff --git a/roles/hotness/files/yumconfig b/roles/hotness/files/yumconfig index de6afd0656..205622c7d5 100644 --- a/roles/hotness/files/yumconfig +++ b/roles/hotness/files/yumconfig @@ -12,10 +12,24 @@ installonly_limit=3 # It is usually 90m. We'll expire often.. metadata_expire=5m -# We have only one repo to query... -[rawhide-source] -name=Rawhide Source +# We have three repos to query... +[rawhide-x86_64] +name=Rawhide x86_64 failovermethod=priority -baseurl=http://dl.phx2.fedoraproject.org/pub/fedora/linux/development/rawhide/source/SRPMS/ +baseurl=https://kojipkgs.fedoraproject.org/repos/rawhide/latest/x86_64/ +enabled=1 +gpgcheck=0 + +[rawhide-i386] +name=Rawhide i386 +failovermethod=priority +baseurl=https://kojipkgs.fedoraproject.org/repos/rawhide/latest/i386/ +enabled=1 +gpgcheck=0 + +[rawhide-armhfp] +name=Rawhide armhfp +failovermethod=priority +baseurl=https://kojipkgs.fedoraproject.org/repos/rawhide/latest/armhfp/ enabled=1 gpgcheck=0 diff --git a/roles/hotness/templates/hotness.py b/roles/hotness/templates/hotness.py index 9248c1b064..a97895d650 100644 --- a/roles/hotness/templates/hotness.py +++ b/roles/hotness/templates/hotness.py @@ -83,7 +83,7 @@ config = { "hotness.cache": { "backend": "dogpile.cache.dbm", - "expiration_time": 300, + "expiration_time": 290, "arguments": { "filename": "/var/tmp/the-new-hotness-cache.dbm", },