-
Notifications
You must be signed in to change notification settings - Fork 104
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
Subresources not reloaded in development mode #221
Comments
I’ve noticed this, it’s very annoying -.- |
If you happen to know what is going on, a patch to fix it would be great! I would not like to just revert #184 since then we would be back to quite slow browsing in dev mode. |
Sub resources don't go down the code path that is patched with a cache, looking to see if I can find a patch, but: If you touch whatever view you're working on the sub resources will reload which is a fairly straightforward workaround and far better than restarting. e.g. change something in if you are working on |
I think the proper fix would be for page rendering to track usage of custom tag libs and check their timestamps as well. Other than custom tag libs, are regular includes (IIRC using |
IIRC custom tag lib loading is all done inside of jelly, during compilation of the scripts.
not sure can check later |
|
It's called as part of compiling the scripts as the scripts are parsed jelly will load them and compile. It is called during page render just not from any of our code. Yes that would probably work, the jelly context is available afaik |
While using
on core in jenkinsci/jenkins#5496 I noticed that changes to
core/src/main/resources/lib/hudson/artifactList.jelly
were not being reloaded, though changes to a top-level Jelly file (l:layout
) are reloaded.git bisect
found jenkinsci/jenkins#4813 which implies that #184 is responsible for the regression (not the more recent #220).The text was updated successfully, but these errors were encountered: