Skip to content

Commit

Permalink
ArC: consider built-in session context during client proxy optimization
Browse files Browse the repository at this point in the history
- the problem occurs when quarkus-websockets-next and quarkus-undertow
extensions are used at the same time
- fixes quarkusio#46548
  • Loading branch information
mkouba committed Feb 28, 2025
1 parent bc14c86 commit 25ff6d7
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -591,6 +591,7 @@ private Set<DotName> findSingleContextNormalScopes() {
Map<DotName, Integer> contextsForScope = new HashMap<>();
// built-in contexts
contextsForScope.put(BuiltinScope.REQUEST.getName(), 1);
contextsForScope.put(BuiltinScope.SESSION.getName(), 1);
// custom contexts
for (Map.Entry<ScopeInfo, List<Function<MethodCreator, ResultHandle>>> entry : beanDeployment
.getCustomContexts()
Expand Down

0 comments on commit 25ff6d7

Please sign in to comment.