From 9229a5cd19fb17a56c2811135a41ab99d86316f0 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Wed, 11 Jun 2014 19:13:22 +0000 Subject: [PATCH] Typofixes. --- roles/fedmsg/base/templates/endpoints-fmn-web.py.j2 | 4 ++-- roles/fedmsg/base/templates/ssl.py.j2 | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/roles/fedmsg/base/templates/endpoints-fmn-web.py.j2 b/roles/fedmsg/base/templates/endpoints-fmn-web.py.j2 index 4be8ac300f..550272b25f 100644 --- a/roles/fedmsg/base/templates/endpoints-fmn-web.py.j2 +++ b/roles/fedmsg/base/templates/endpoints-fmn-web.py.j2 @@ -7,11 +7,11 @@ suffix = 'phx2.fedoraproject.org' config = dict( endpoints={ "fmn.notifs-web01": [ - "tcp://notifs-web01.%s:30%0.2i" % suffix + "tcp://notifs-web01.%s:30%0.2i" % (suffix, i) for i in range(16) ], "fmn.notifs-web02": [ - "tcp://notifs-web02.%s:30%0.2i" % suffix + "tcp://notifs-web02.%s:30%0.2i" % (suffix, i) for i in range(16) ], }, diff --git a/roles/fedmsg/base/templates/ssl.py.j2 b/roles/fedmsg/base/templates/ssl.py.j2 index e37c071a37..b5b906c9f7 100644 --- a/roles/fedmsg/base/templates/ssl.py.j2 +++ b/roles/fedmsg/base/templates/ssl.py.j2 @@ -28,7 +28,7 @@ config = dict( ("shell.notifs-web0%i" % i, "shell-notifs-web0%i.%s" % (i, suffix)) for i in range(1, 3) ] + [ - ("fmn.notifs-web0%i" % i, "pkgdb-notifs-web0%i.%s" % (i, suffix)) + ("fmn.notifs-web0%i" % i, "fmn-notifs-web0%i.%s" % (i, suffix)) for i in range(1, 3) ] + [ ("shell.pkgdb0%i" % i, "shell-pkgdb0%i.%s" % (i, suffix))