From ab3dadd10cb65e6edd080557af2d4aa823637d89 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Tue, 27 Sep 2016 18:04:17 +0000 Subject: [PATCH] Turn on new pdc-updater handlers in staging. --- roles/pdc/backend/templates/pdcupdater.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/roles/pdc/backend/templates/pdcupdater.py b/roles/pdc/backend/templates/pdcupdater.py index c106b8761f..92a35d1532 100644 --- a/roles/pdc/backend/templates/pdcupdater.py +++ b/roles/pdc/backend/templates/pdcupdater.py @@ -62,6 +62,13 @@ config = { 'pdcupdater.handlers': [ 'pdcupdater.handlers.compose:NewComposeHandler', 'pdcupdater.handlers.atomic:AtomicComponentGroupHandler', + + {% if env == 'staging' %} + # https://fedoraproject.org/wiki/User:Ralph/Drafts/Infrastructure/Factory2/ModellingDeps + 'pdcupdater.handlers.depchain.rpms:NewRPMBuildTimeDepChainHandler', + 'pdcupdater.handlers.depchain.rpms:NewRPMRunTimeDepChainHandler', + {% endif %} + # The new version of PDC broke all of these. There are different # endpoints, etc. ##'pdcupdater.handlers.pkgdb:NewPackageHandler',