in src/main/java/org/apache/geronimo/microprofile/impl/jwtauth/cdi/GeronimoJwtAuthExtension.java [273:280]
public void execute(final TokenAccessor req, final ServletRunnable task) throws ServletException, IOException {
request.set(req); // we want to track it ourself to support propagation properly when needed
try {
task.run();
} finally {
request.remove();
}
}