Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Commit f1527c9

Browse files
authored
Merge pull request #7 from cms-DQM/fix_sso_audience
2 parents dcca733 + 8c55814 commit f1527c9

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

runregistry/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
# To update:
44
# pip install wheel && pip install twine && python setup.py bdist_wheel && twine upload --skip-existing dist/*
5-
__version__ = "1.2.0"
5+
__version__ = "1.2.1"

runregistry/runregistry.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ def setup(target):
4141
elif target == "development":
4242
api_url = "https://dev-cmsrunregistry.web.cern.ch/api"
4343
use_cookies = True
44-
target_application = "dev-cmsrunregistry-sso-proxy"
45-
elif target == "qa":
46-
api_url = "https://cmsrunregistry-qa.web.cern.ch/api" # Temporary new SSO Proxy for production
47-
use_cookies = True
48-
target_application = "cmsrunregistry-sso-proxy"
44+
target_application = "webframeworks-paas-dev-cmsrunregistry"
45+
# elif target == "qa":
46+
# api_url = "https://cmsrunregistry-qa.web.cern.ch/api" # Temporary new SSO Proxy for production
47+
# use_cookies = True
48+
# target_application = "webframeworks-paas-qa-cmsrunregistry"
4949
elif target == "production":
5050
api_url = "https://cmsrunregistry.web.cern.ch/api"
5151
use_cookies = True
52-
target_application = "cmsrunregistry-sso-proxy"
52+
target_application = "webframeworks-paas-cmsrunregistry"
5353

5454

5555
def _get_headers(token: str = ""):

0 commit comments

Comments
 (0)