From 9f13037ffc0cb7d5c48d1e95e2caa06587b0f3ce Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Fri, 30 May 2014 16:30:00 +0000 Subject: [PATCH] Update releng fedmsg to use the new relay. Not sure why this is separate. --- files/releng/fedmsg/endpoints.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/files/releng/fedmsg/endpoints.py b/files/releng/fedmsg/endpoints.py index 189187a225..e376674d0c 100644 --- a/files/releng/fedmsg/endpoints.py +++ b/files/releng/fedmsg/endpoints.py @@ -9,7 +9,7 @@ config = dict( # This is the output side of the relay to which all other # services can listen. "relay_outbound": [ - "tcp://app01.%s:3999" % suffix, + "tcp://busgateway01.%s:3999" % suffix, ], # For other, more 'normal' services, fedmsg will try to guess the @@ -85,5 +85,5 @@ config = dict( # It is also used by the git-hook, for the same reason. # It is also used by the mediawiki php plugin which, due to the oddities of # php, can't maintain a single passive-bind endpoint of it's own. - relay_inbound="tcp://app01.%s:3998" % suffix, + relay_inbound="tcp://busgateway01.%s:9941" % suffix, )