From c1ebf71488d0d2d55460409f7412ca93b0e8de88 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sat, 25 Jun 2022 10:41:13 -0700 Subject: [PATCH] toddlers: fix staging conditionals Signed-off-by: Kevin Fenzi --- roles/openshift-apps/toddlers/templates/fedora-messaging.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/openshift-apps/toddlers/templates/fedora-messaging.toml b/roles/openshift-apps/toddlers/templates/fedora-messaging.toml index 0e0a343dd3..9e5150ec64 100644 --- a/roles/openshift-apps/toddlers/templates/fedora-messaging.toml +++ b/roles/openshift-apps/toddlers/templates/fedora-messaging.toml @@ -65,7 +65,7 @@ fasjson = true # Account to use to connect to FAS/FASJSON fas_url = "https://fasjson{{ env_suffix }}.fedoraproject.org/" -{% if env == "staging" %} +{% if env != "staging" %} fas_username = "{{ fedoraDummyUser }}" fas_password = "{{ fedoraDummyUserPassword }}" {% else %} @@ -74,7 +74,7 @@ fas_password = "{{ fedoraStagingDummyUserPassword }}" {% endif %} # Account to use to connect to bugzilla -{% if env == "staging" %} +{% if env != "staging" %} bugzilla_url = "https://bugzilla.redhat.com" bugzilla_api_key = "{{ toddlers_bz_api_key }}" {% else %}