-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
--path_prefix broken in 2.4.0 #4421
Comments
Thanks for the report. I was able to reproduce it and it is a serious regression. It is quite interesting to see a puppeteer based tests that catches regression for TensorBoard :) For TensorBoarder: This change is related to the router in the 2.4.0. In the release, we introduced a handrolled router which is unaware of notion of path prefix and eagerly redirects "/foo/bar/index.html" to "/" which breaks all the subsequent requests. Few ways to move forward:
|
@stephanwlee I just ran into this and it's nice to see that you just merged #4423, thank you! Any chance we might be able to get a patch release of 2.4 with this fix backported? |
We do plan to publish a patch release. I’ve filed #4547 to track it. |
TensorBoard 2.4.1 shipped with this patch. |
Describe the current behavior
Some tensorboards installed with tensorflow couldn't access the right URLs.
Reproducible steps
We got
failed to fetch runs
Because some requests did not add
abc/def
prefix to the base URL:Describe the expected behavior
All tensorboard requests should add prefix to the base URL if
--path_prefix
has given.Standalone code to reproduce the issue
I created a regression tests project to investigate the problem
https://github.com/qrtt1/tensorboard-regression/runs/1487646153
It got worse after tf 2.3.0 (they use tensorboard
2.4.0
):The text was updated successfully, but these errors were encountered: