We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When serving galaxy in a URL with a prefix (i.e. not /), the redirect URL gets the prefix twice, e.g. when using myprefix as galaxy_url_prefix:
/
myprefix
galaxy_url_prefix
http://host/myprefix/myprefix/login/start?connect_external_provider=keycloak&connect_external_email=...
I believe this is because the url_for is used both here:
url_for
galaxy/lib/galaxy/webapps/galaxy/controllers/authnz.py
Line 113 in 051c5ab
and then again below:
Line 123 in 051c5ab
should this be only used the second time?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When serving galaxy in a URL with a prefix (i.e. not
/
), the redirect URL gets the prefix twice,e.g. when using
myprefix
asgalaxy_url_prefix
:http://host/myprefix/myprefix/login/start?connect_external_provider=keycloak&connect_external_email=...
I believe this is because the
url_for
is used both here:galaxy/lib/galaxy/webapps/galaxy/controllers/authnz.py
Line 113 in 051c5ab
and then again below:
galaxy/lib/galaxy/webapps/galaxy/controllers/authnz.py
Line 123 in 051c5ab
should this be only used the second time?
The text was updated successfully, but these errors were encountered: