From d9f4ad3baac7e0281648d53e8c2a1281ce341252 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Jul 17 2020 20:43:59 +0000 Subject: fix rawhide/branched sync messages Since moving these scripts to fedora-messaging we haven't seen the rsync messages show up. It turns out they are there, but they are showing up as 'composerawhide' instead of 'compose.rawhide'. Try and add a . in there to get them back to normal. See https://pagure.io/fedora-infrastructure/issue/9148 Signed-off-by: Kevin Fenzi --- diff --git a/scripts/fedora-messaging.sh b/scripts/fedora-messaging.sh index 7ce040c..a6e789f 100644 --- a/scripts/fedora-messaging.sh +++ b/scripts/fedora-messaging.sh @@ -34,7 +34,7 @@ function send_fedora_message() echo ${jsoninput} | $LOGGER \ --cert-prefix ${FEDMSG_CERTPREFIX} \ --modname ${FEDMSG_MODNAME} \ - --topic "${dist}.${topic}" \ + --topic ".${dist}.${topic}" \ --json-input }