Skip to content

Commit

Permalink
Merge branch '2.2.x' into 2.3.x
Browse files Browse the repository at this point in the history
Closes gh-22282
  • Loading branch information
wilkinsona committed Jul 9, 2020
2 parents 888bea5 + afa5b12 commit c765df6
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -19,6 +19,7 @@
import java.util.stream.Collectors;

import io.undertow.Undertow;
import org.eclipse.jetty.servlet.ServletHolder;
import reactor.netty.http.server.HttpServer;

import org.springframework.beans.factory.ObjectProvider;
Expand Down Expand Up @@ -100,7 +101,7 @@ TomcatReactiveWebServerFactory tomcatReactiveWebServerFactory(

@Configuration(proxyBeanMethods = false)
@ConditionalOnMissingBean(ReactiveWebServerFactory.class)
@ConditionalOnClass({ org.eclipse.jetty.server.Server.class })
@ConditionalOnClass({ org.eclipse.jetty.server.Server.class, ServletHolder.class })
static class EmbeddedJetty {

@Bean
Expand Down

0 comments on commit c765df6

Please sign in to comment.