-
Notifications
You must be signed in to change notification settings - Fork 8
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
[FLS] Complete migration to Jetty-12 and consider handlers again #1258
[FLS] Complete migration to Jetty-12 and consider handlers again #1258
Conversation
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## master #1258 +/- ##
============================================
+ Coverage 33.45% 33.48% +0.02%
Complexity 359 359
============================================
Files 1175 1175
Lines 25763 25743 -20
Branches 1594 1589 -5
============================================
Hits 8619 8619
+ Misses 16623 16603 -20
Partials 521 521 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dear @HannesWell
Thank you a lot for finding resources to complete FLS codebase migration to new Jetty API.
I'd just ask you to pay a bit of attention to the project code guidelines, which, for instance, prohibit compound names for vars and fields. And to the rest of my comments.
Thank you again for your time.
...s/org.eclipse.passage.lic.jetty/src/org/eclipse/passage/lic/internal/jetty/JettyHandler.java
Outdated
Show resolved
Hide resolved
...s/org.eclipse.passage.lic.jetty/src/org/eclipse/passage/lic/internal/jetty/JettyHandler.java
Outdated
Show resolved
Hide resolved
...s/org.eclipse.passage.lic.jetty/src/org/eclipse/passage/lic/internal/jetty/JettyHandler.java
Outdated
Show resolved
Hide resolved
...s/org.eclipse.passage.lic.jetty/src/org/eclipse/passage/lic/internal/jetty/JettyHandler.java
Outdated
Show resolved
Hide resolved
...s/org.eclipse.passage.lic.jetty/src/org/eclipse/passage/lic/internal/jetty/JettyRequest.java
Outdated
Show resolved
Hide resolved
fcb5f8c
to
9f37a3c
Compare
Thank you @eparovyshnaya for the fast review. I tried to apply all your specific and general remarks. Please let me know if I missed something. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You've just missed one compound name.
Otherwise - perfect work.
...s/org.eclipse.passage.lic.jetty/src/org/eclipse/passage/lic/internal/jetty/JettyHandler.java
Outdated
Show resolved
Hide resolved
9f37a3c
to
4c1316e
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You missed compound parameter name.
...s/org.eclipse.passage.lic.jetty/src/org/eclipse/passage/lic/internal/jetty/JettyHandler.java
Outdated
Show resolved
Hide resolved
This completes the migration of Passage's JettyHandler and JettyRequest to Jetty-12 so that response handlers are considered again and the FLS works again. Jetty-12 migration guide https://eclipse.dev/jetty/documentation/jetty-12/programming-guide/index.html#pg-migration-11-to-12-servlet-to-handler
4c1316e
to
377a387
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you, @HannesWell
@ruspl-afed |
Your welcome. |
Release for Passage 2.10.1 has been planned. |
This was forgotten in eclipse-passage#1258.
This was forgotten in #1258.
This completes the migration of Passage's
JettyHandler
andJettyRequest
to Jetty-12,which was started in #1253, but has left the FLS in a dysfunctional state.This PR completes that migration so that response handlers are considered again to restore the FLS full functionality.
The changes are done with the great help of the Jetty-12 migration guide:
https://eclipse.dev/jetty/documentation/jetty-12/programming-guide/index.html#pg-migration-11-to-12-servlet-to-handler