We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There is unnecessary concurrency contention at org.apache.jasper.runtime.PageContextImpl:213 :
setAttribute(Constants.FIRST_REQUEST_SEEN, "true", APPLICATION_SCOPE);
PageContext initialized on every page request. Doing setAttribute with application scope and the same name cause blocking of concurrent requests.
I can't find any usages of Constants.FIRST_REQUEST_SEEN. Consider this line to be removed.
The text was updated successfully, but these errors were encountered:
@glassfishrobot Commented Reported by dernasherbrezon
Sorry, something went wrong.
@glassfishrobot Commented This issue was imported from java.net JIRA JSP-34
No branches or pull requests
There is unnecessary concurrency contention at org.apache.jasper.runtime.PageContextImpl:213 :
setAttribute(Constants.FIRST_REQUEST_SEEN, "true", APPLICATION_SCOPE);
PageContext initialized on every page request. Doing setAttribute with application scope and the same name cause blocking of concurrent requests.
I can't find any usages of Constants.FIRST_REQUEST_SEEN. Consider this line to be removed.
The text was updated successfully, but these errors were encountered: