Simone Bordet

Results 555 comments of Simone Bordet

`IdleTimeout` has a very cheap mechanism to set itself as non-idle, just re-assigning a `long` field in `notIdle()`. `IdleTimeout` looks similar to `CyclicTimeouts.Expirable`, in that it only needs to maintain...

A server is not supposed to send many RST_STREAM frames. If it does, it is likely an application mistake, either the client app resetting, or the client app sending bad...

The code you linked in the last comment is reset _send_, so if the client sends a lot of resets it will close its own connection. See here for troubleshooting:...

Yes, this is normal behavior. Your application should read the data to avoid this.

Jetty 10.0.26 contains the fix for MadeYouReset, so yes it may be emitting more resets than previous versions. > By application do you mean the server? To clarify, do you...

@inderjit-sood please read https://github.com/jetty/jetty.project/blob/jetty-12.1.x/CONTRIBUTING.md to prepare yourself to contribute. Make sure you have the permission of your employer to contribute to open source projects. Comment on this issue to discuss....

This is what `jetty.sh` does now, but you can write your own script and use the JVM arguments file feature as documented here: https://jetty.org/docs/jetty/12.1/operations-guide/start/index.html#configure-dry-run Search for "JVM arguments file feature"...

Please at least copy/paste the output of the logs, and define what do you mean by "accessing the URL path is not working". Do you get a 404? An error?...

The logs show that your web application is correctly deployed under context path `/dummy`. > Yes, I am getting 404 error code while hitting the specific URL path. What URL...