Skip to content

Commit

Permalink
Refine Reactor field precomputing on native
Browse files Browse the repository at this point in the history
This commit refines Reactor field precomputing
on native to only compute at build-time reactor-core
fields, since doing so on reactor-netty has unwanted
side effects like Epoll always disabled.

Closes spring-projectsgh-31141
  • Loading branch information
sdeleuze committed Sep 1, 2023
1 parent c01e1b8 commit cc350ec
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -38,7 +38,7 @@ class PreComputeFieldFeature implements Feature {
Pattern.compile(Pattern.quote("org.springframework.aot.AotDetector#inNativeImage")),
Pattern.compile(Pattern.quote("org.springframework.") + ".*#.*Present"),
Pattern.compile(Pattern.quote("org.springframework.") + ".*#.*PRESENT"),
Pattern.compile(Pattern.quote("reactor.") + ".*#.*Available"),
Pattern.compile(Pattern.quote("reactor.core.") + ".*#.*Available"),
Pattern.compile(Pattern.quote("org.apache.commons.logging.LogAdapter") + "#.*Present")
};

Expand Down

0 comments on commit cc350ec

Please sign in to comment.