From 606da70eb7de316cdfc6e4ae497aab1b2858edac Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Nov 13 2019 22:09:31 +0000 Subject: Drop the now-useless fedmsg subclasses Signed-off-by: Adam Williamson --- diff --git a/relvalconsumer.py b/relvalconsumer.py index 11618b9..8881b7f 100644 --- a/relvalconsumer.py +++ b/relvalconsumer.py @@ -324,31 +324,4 @@ http://qa.fedoraproject.org/blockerbugs/current else: self.logger.info(msg) - -class RelvalProductionConsumer(RelvalConsumer): - """The production consumer: listens for prod messages, creates - events in the production wiki, and sends emails to mailing lists. - Use carefully! Only one instance of this should be running in the - world at any time. - """ - topic = "org.fedoraproject.prod.pungi.compose.status.change" - config_key = "relvalconsumer.prod.enabled" - # this is our own thing, so let's 'namespace' it to avoid any - # unfortunate collisions with fedmsg/moksha - relval_prod = True - - -class RelvalTestConsumer(RelvalConsumer): - """The testing consumer: listens for dev messages, creates - events in the staging wiki, and logs the announcement email rather - than sending it. Still, don't run this willy-nilly, as the more - people poking the staging wiki, the more confusing things will be. - """ - topic = "org.fedoraproject.dev.pungi.compose.status.change" - config_key = "relvalconsumer.test.enabled" - validate_signatures = False - # this is our own thing, so let's 'namespace' it to avoid any - # unfortunate collisions with fedmsg/moksha - relval_prod = False - # vim: set textwidth=120 ts=8 et sw=4: