You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If an impatient user frequently reloads the page, the error is logged more frequently
The guard that is supposed to prevent this is inadequate. ResourceHandlerImpl isConnectionAbort.
In my case the system language is set to german so the check doesn't work.
To Reproduce
Steps to reproduce the behavior:
configure system language to any other than english
open any JSF page where several web resorces get loaded
execute F5 or Strg + F5 several times
warining occurs WARNING [jakarta.enterprise.resource.webcontainer.faces.application] (default task-14) JSF1064: Ressource theme.css aus Bibliothek primefaces kann nicht gefunden oder bedient werden. WARNING [jakarta.enterprise.resource.webcontainer.faces.application] (default task-14) : java.io.IOException: Eine bestehende Verbindung wurde softwaregesteuert durch den Hostcomputer abgebrochen
Expected behavior
no warning get logged
The text was updated successfully, but these errors were encountered:
Yeah, that's hacky as it hasn't been standardized in Servlet API yet. Ideally the underlying I/O handler should have thrown ClosedChannelException or even InterruptedIOException or EOFException instead. Try reporting an issue to Undertow to have them to proactively improve that in their impl. In the meanwhile all we can do is to detect German translation as well but then one would wonder how about all these other languages .. English is the de facto standard/default and hence it was the only one being checked for.
If an impatient user frequently reloads the page, the error is logged more frequently
The guard that is supposed to prevent this is inadequate.
ResourceHandlerImpl isConnectionAbort.
In my case the system language is set to german so the check doesn't work.
To Reproduce
Steps to reproduce the behavior:
configure system language to any other than english
WARNING [jakarta.enterprise.resource.webcontainer.faces.application] (default task-14) JSF1064: Ressource theme.css aus Bibliothek primefaces kann nicht gefunden oder bedient werden. WARNING [jakarta.enterprise.resource.webcontainer.faces.application] (default task-14) : java.io.IOException: Eine bestehende Verbindung wurde softwaregesteuert durch den Hostcomputer abgebrochen
Expected behavior
no warning get logged
The text was updated successfully, but these errors were encountered: