-
Notifications
You must be signed in to change notification settings - Fork 2.8k
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
NoSuchFileException in logs and improper caching in devmode after removing a html file #5163
Comments
#5165 should fix the log part, haven't yet looked much into the caching thing but that seems to be somewhere on Vert.x level?! @machi1990 I see you self-assigned this so perhaps you could find out :) |
Yeap, I planned to look at this a bit later. Thanks for fixing the logging part. |
… the first request fixes quarkusio#5163
@jmartisk I pushed a possible fix for this. It also includes your fix for the log. I could not update your PR, so let's open another one that includes the two fixes. |
… the first request fixes quarkusio#5163
If there is a static html file in
src/main/resources/META-INF/resources/
, the user starts dev mode, accesses that file over a HTTP request, and then deletes the file and tries the same URL again, this exception will start to appear repeatedly in the log:Moreover, if this file is removed BEFORE there is a HTTP request to it, the contents of that file are cached somewhere and it will still be possible to request it even though the file does not exist anymore.
The text was updated successfully, but these errors were encountered: