Skip to content

Commit

Permalink
Set galaxy to old-galaxy for community tools and tests.
Browse files Browse the repository at this point in the history
No-Issue

Signed-off-by: James Tanner <[email protected]>
  • Loading branch information
jctanner committed Oct 2, 2023
1 parent cecf61a commit f4de697
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion galaxy_ng/app/api/v1/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ class LegacySyncSerializer(serializers.Serializer):

baseurl = serializers.CharField(
required=False,
default='https://galaxy.ansible.com/api/v1/roles/'
default='https://old-galaxy.ansible.com/api/v1/roles/'
)
github_user = serializers.CharField(required=False)
role_name = serializers.CharField(required=False)
Expand Down
8 changes: 4 additions & 4 deletions galaxy_ng/app/utils/galaxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def find_namespace(baseurl=None, name=None, id=None):

logger.info(f'baseurl1: {baseurl}')
if baseurl is None or not baseurl:
baseurl = 'https://galaxy.ansible.com'
baseurl = 'https://old-galaxy.ansible.com'
baseurl += '/api/v1/namespaces'
logger.info(f'baseurl2: {baseurl}')

Expand Down Expand Up @@ -151,7 +151,7 @@ def upstream_namespace_iterator(
"""Abstracts the pagination of v2 collections into a generator with error handling."""
logger.info(f'baseurl1: {baseurl}')
if baseurl is None or not baseurl:
baseurl = 'https://galaxy.ansible.com/api/v1/namespaces'
baseurl = 'https://old-galaxy.ansible.com/api/v1/namespaces'
if not baseurl.rstrip().endswith('/api/v1/namespaces'):
baseurl = baseurl.rstrip() + '/api/v1/namespaces'
logger.info(f'baseurl2: {baseurl}')
Expand Down Expand Up @@ -228,7 +228,7 @@ def upstream_collection_iterator(
"""Abstracts the pagination of v2 collections into a generator with error handling."""
logger.info(f'baseurl1: {baseurl}')
if baseurl is None or not baseurl:
baseurl = 'https://galaxy.ansible.com/api/v2/collections'
baseurl = 'https://old-galaxy.ansible.com/api/v2/collections'
logger.info(f'baseurl2: {baseurl}')

# normalize the upstream url
Expand Down Expand Up @@ -411,7 +411,7 @@ def upstream_role_iterator(
"""Abstracts the pagination of v1 roles into a generator with error handling."""
logger.info(f'baseurl1: {baseurl}')
if baseurl is None or not baseurl:
baseurl = 'https://galaxy.ansible.com/api/v1/roles'
baseurl = 'https://old-galaxy.ansible.com/api/v1/roles'
logger.info(f'baseurl2: {baseurl}')

# normalize the upstream url
Expand Down

0 comments on commit f4de697

Please sign in to comment.