Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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 @@ -31,6 +31,9 @@ public class AppEngineAnnotationConfiguration extends AnnotationConfiguration {
@Override
public List<ServletContainerInitializer> getNonExcludedInitializers(WebAppContext context)
throws Exception {
// TODO: remove this line when https://github.com/jetty/jetty.project/issues/14431 is resolved.
context.getMetaData().orderFragments();

ArrayList<ServletContainerInitializer> nonExcludedInitializers =
new ArrayList<>(super.getNonExcludedInitializers(context));
for (ServletContainerInitializer sci : nonExcludedInitializers) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
public class AppEngineAnnotationConfiguration extends AnnotationConfiguration {
@Override
protected List<ServletContainerInitializer> getNonExcludedInitializers(State state) {
// TODO: remove this line when https://github.com/jetty/jetty.project/issues/14431 is resolved.
state._context.getMetaData().orderFragments();

List<ServletContainerInitializer> initializers = super.getNonExcludedInitializers(state);
for (ServletContainerInitializer sci : initializers) {
Expand Down
Loading