From 6c8749cf596dea93620d5a464632509204ee5926 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Mon, 29 Apr 2019 11:14:36 +0200 Subject: [PATCH] distgit/pagure: Fix the amqp_url for fedora-messaging on pagure The cert is now for rabbitmq.stg.fedoraproject.org and not: rabbitmq01.stg.phx2.fedoraproject.org so having the wrong url in the config leads to a CertificateError leading to pagure failing to send notifications on fedora-messaging. Signed-off-by: Pierre-Yves Chibon --- roles/distgit/pagure/templates/fedora-messaging.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/distgit/pagure/templates/fedora-messaging.toml b/roles/distgit/pagure/templates/fedora-messaging.toml index a65e49ee5c..de1d59d363 100644 --- a/roles/distgit/pagure/templates/fedora-messaging.toml +++ b/roles/distgit/pagure/templates/fedora-messaging.toml @@ -1,7 +1,7 @@ # A sample configuration for fedora-messaging. This file is in the TOML format. # For complete details on all configuration options, see the documentation. -amqp_url = "amqps://pagure{{ env_suffix }}:@rabbitmq01{{ env_suffix }}.phx2.fedoraproject.org/%2Fpubsub" +amqp_url = "amqps://pagure{{ env_suffix }}:@rabbitmq{{ env_suffix }}.fedoraproject.org/%2Fpubsub" # The topic_prefix configuration value will add a prefix to the topics of every sent message. # This is used for migrating from fedmsg, and should not be used afterwards.