diff options
author | Ralph Bean <rbean@redhat.com> | 2017-08-17 15:24:10 +0000 |
---|---|---|
committer | Ralph Bean <rbean@redhat.com> | 2017-08-17 15:24:10 +0000 |
commit | 0e747aa620978903e7881e5b470fe95f9cf2a54f (patch) | |
tree | 57896837d66e03b8a9371823d47c9df1ee0b34ab | |
parent | 114e23e9df658924f49d66886f927445aa91532c (diff) | |
download | ansible-0e747aa620978903e7881e5b470fe95f9cf2a54f.tar.gz ansible-0e747aa620978903e7881e5b470fe95f9cf2a54f.tar.xz ansible-0e747aa620978903e7881e5b470fe95f9cf2a54f.zip |
I sure got that backwards.
-rw-r--r-- | roles/distgit/pagure/templates/pagure-sync-bugzilla.py.j2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/distgit/pagure/templates/pagure-sync-bugzilla.py.j2 b/roles/distgit/pagure/templates/pagure-sync-bugzilla.py.j2 index 05ef6a9f9..72dacdf93 100644 --- a/roles/distgit/pagure/templates/pagure-sync-bugzilla.py.j2 +++ b/roles/distgit/pagure/templates/pagure-sync-bugzilla.py.j2 @@ -95,14 +95,14 @@ FASURL = 'https://admin.stg.fedoraproject.org/accounts' FASINSECURE = True PAGUREURL = 'https://stg.pagure.io' PAGURE_DIST_GIT_URL = 'https://src.stg.fedoraproject.org' -PDCURL = 'https://pdc.fedoraproject.org/rest_api/v1/' +PDCURL = 'https://pdc.stg.fedoraproject.org/rest_api/v1/' MDAPIURL = 'https://apps.stg.fedoraproject.org/mdapi/' {% else %} FASURL = 'https://admin.fedoraproject.org/accounts' FASINSECURE = False PAGUREURL = 'https://pagure.io' PAGURE_DIST_GIT_URL = 'https://src.fedoraproject.org' -PDCURL = 'https://pdc.stg.fedoraproject.org/rest_api/v1/' +PDCURL = 'https://pdc.fedoraproject.org/rest_api/v1/' MDAPIURL = 'https://apps.fedoraproject.org/mdapi/' {% endif %} |