-
Notifications
You must be signed in to change notification settings - Fork 134
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use ANSIBLE_BASE_JWT_KEY to make Galaxy aware of Envoy #2102
Use ANSIBLE_BASE_JWT_KEY to make Galaxy aware of Envoy #2102
Conversation
/retest |
4251458
to
d170e6e
Compare
d170e6e
to
7bdf8dd
Compare
"ANSIBLE_API_HOSTNAME": settings.get("ANSIBLE_API_HOSTNAME"), | ||
"ANSIBLE_CONTENT_HOSTNAME": settings.get("ANSIBLE_CONTENT_HOSTNAME"), | ||
} | ||
gw_url = urlparse(ANSIBLE_BASE_JWT_KEY) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So ANSIBLE_BASE_JWT_KEY is actually a URL string? or a key?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
David commented on the jira issue (here's the excerpt) ANSIBLE_BASE_JWT_KEY which can either be a URL or a key file
. If ANSIBLE_BASE_JWT_KEY
is a key the scheme
and hostname
will not be populated in the following check and nothing should change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So I think it is good to add a comment so the future us will know about it when dealing with this piece of code :)
# The following variable is either a URL or a key file path.
ANSIBLE_BASE_JWT_KEY = settings.get("ANSIBLE_BASE_JWT_KEY")
/retest |
…OURCE_PROVIDER AAP-20998 No-Issue
abf8ad8
to
d92e325
Compare
Specifically in the case of downloading collections.
Before:
After:
AAP-20998
No-Issue