Update releng fedmsg to use the new relay.

Not sure why this is separate.
This commit is contained in:
Ralph Bean 2014-05-30 16:30:00 +00:00
parent 504514d62e
commit 9f13037ffc

View file

@ -9,7 +9,7 @@ config = dict(
# This is the output side of the relay to which all other # This is the output side of the relay to which all other
# services can listen. # services can listen.
"relay_outbound": [ "relay_outbound": [
"tcp://app01.%s:3999" % suffix, "tcp://busgateway01.%s:3999" % suffix,
], ],
# For other, more 'normal' services, fedmsg will try to guess the # 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 git-hook, for the same reason.
# It is also used by the mediawiki php plugin which, due to the oddities of # 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. # 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,
) )