From 7123aa80ca89db5673ac8edbaba9a2f2e06ce8cf Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Fri, 8 Nov 2013 19:00:08 +0000 Subject: [PATCH] Only use proxy01 for incoming fedmsg. --- roles/fedmsg_base/templates/relay.py.j2 | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/roles/fedmsg_base/templates/relay.py.j2 b/roles/fedmsg_base/templates/relay.py.j2 index ef6e51f33b..0b13e2ac92 100644 --- a/roles/fedmsg_base/templates/relay.py.j2 +++ b/roles/fedmsg_base/templates/relay.py.j2 @@ -37,6 +37,11 @@ config = dict( "tcp://busgateway01.%s:9941" % suffix, # ...but they have to go through our external proxy first.. - "tcp://hub.fedoraproject.org:9941", + #"tcp://hub.fedoraproject.org:9941", + + # ...and normally, we'd like them to go through round-robin, but we're + # not getting messages in from proxies across the vpn. So, only use + # proxy01 for now. + "tcp://209.132.181.16:9941", ], )