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
http://address/mount
I need to mount luigi behind a nginx, for example luigi at http://address/mount. For that I configure:
luigi
[core] default_scheduler_url=http://address/mount ....
GUI is ok and works but, CLI not due to url resolution. it happens there
luigi/luigi/rpc.py
Line 54 in c135664
To understand what happened:
parsed=urlparse('http://address/mount') url='/api/add_task' urljoin(parsed.geturl(), url) # ==> give 'http://address/api/add_task' # expected http://address/mount/api/add_task
What I must do for working - slash at the end of mount point, no slash for url -:
parsed=urlparse('http://address/mount/') url='api/add_task' urljoin(parsed.geturl(), url) # ==> http://address/mount/api/add_task
The text was updated successfully, but these errors were encountered:
fix: using default_scheduler_url as a mounting point for not root path.
be769c8
fix spotify#3213 Signed-off-by: ROUDET Franck INNOV/IT-S <[email protected]>
I think having the slash is expected.
Sorry, something went wrong.
fix: using default_scheduler_url as a mounting point for not root pat… (
c38cb08
#3216) * fix: using default_scheduler_url as a mounting point for not root path. fix #3213 Signed-off-by: ROUDET Franck INNOV/IT-S <[email protected]> * Add test for not root default_scheduler_url Signed-off-by: ROUDET Franck INNOV/IT-S <[email protected]> * Test passed Signed-off-by: Franck Roudet <[email protected]> --------- Signed-off-by: ROUDET Franck INNOV/IT-S <[email protected]> Signed-off-by: ROUDET Franck INNOV/IT-S <[email protected]> Signed-off-by: Franck Roudet <[email protected]> Co-authored-by: ROUDET Franck INNOV/IT-S <[email protected]> Co-authored-by: Dillon Stadther <[email protected]>
Successfully merging a pull request may close this issue.
I need to mount
luigi
behind a nginx, for example luigi athttp://address/mount
.For that I configure:
GUI is ok and works but, CLI not due to url resolution. it happens there
luigi/luigi/rpc.py
Line 54 in c135664
To understand what happened:
What I must do for working - slash at the end of mount point, no slash for url -:
The text was updated successfully, but these errors were encountered: