toddlers: fix staging conditionals

Signed-off-by: Kevin Fenzi <kevin@scrye.com>
This commit is contained in:
Kevin Fenzi 2022-06-25 10:41:13 -07:00
parent 5a0d7a6316
commit c1ebf71488

View file

@ -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 %}