Skip to content
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

implement servlet upgrade for ee10 #10128

Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
66cc353
Various Cleanup in ServletChannel
gregw Jul 5, 2023
adb2fb2
Various Cleanup in ServletChannel
gregw Jul 5, 2023
a02dd13
Various Cleanup in ServletChannel
gregw Jul 5, 2023
8faf41e
make ServletChannel error dispatch async
lachlan-roberts Jul 6, 2023
de21dd7
Various Cleanup in ServletChannel
gregw Jul 5, 2023
073e95a
scheduleDispatch after error handler callback
lachlan-roberts Jul 7, 2023
c980ab5
use AtomicBoolean instead of AtomicInteger for error dispatch callback
lachlan-roberts Jul 17, 2023
0e2a0c1
remove checkAndPrepareUpgrade() from ServletChannel
lachlan-roberts Jul 17, 2023
68439bf
implement servlet upgrade for ee10
lachlan-roberts Jul 19, 2023
452a71b
adjust implementation to fix tests
lachlan-roberts Jul 20, 2023
1a178a2
Merge remote-tracking branch 'origin/jetty-12.0.x' into experiment/je…
lachlan-roberts Aug 18, 2023
f222c45
re-enable ServletUpgradeTest for ee10
lachlan-roberts Aug 18, 2023
b5ae22f
Merge remote-tracking branch 'origin/jetty-12.0.x' into experiment/je…
lachlan-roberts Oct 2, 2023
7911d62
Merge remote-tracking branch 'origin/jetty-12.0.x' into experiment/je…
lachlan-roberts Oct 3, 2023
1869ca6
Merge remote-tracking branch 'origin/jetty-12.0.x' into experiment/je…
lachlan-roberts Dec 11, 2023
b6286b2
Merge remote-tracking branch 'origin/jetty-12.0.x' into experiment/je…
lachlan-roberts Jun 14, 2024
c942a7e
wip
lachlan-roberts Jul 17, 2024
36a85a8
add listener to ServletChannel to properly implement servlet upgrade
lachlan-roberts Jul 24, 2024
ef6021d
fix checkstyle issues
lachlan-roberts Jul 24, 2024
ad35ccc
Merge remote-tracking branch 'origin/jetty-12.0.x' into experiment/je…
lachlan-roberts Aug 6, 2024
af300f0
PR #10128 - change ordering in the ServletChannel complete listener
lachlan-roberts Aug 6, 2024
aa8eeaa
changes to ServletUpgradeTest
lachlan-roberts Aug 19, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
import org.eclipse.jetty.http.HttpURI;
import org.eclipse.jetty.http.HttpVersion;
import org.eclipse.jetty.http.MimeTypes;
import org.eclipse.jetty.http.SetCookieParser;
import org.eclipse.jetty.io.Connection;
import org.eclipse.jetty.io.QuietException;
import org.eclipse.jetty.io.RuntimeIOException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,11 @@ public HttpInput getHttpInput()
return _httpInput;
}

public boolean isAborted()
{
return _state.isAborted();
}

public boolean isSendError()
{
return _state.isSendError();
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.