From bf58bd8391f44b71a7f16aecc3028fc461f73de8 Mon Sep 17 00:00:00 2001 From: Samuel Vazquez Date: Fri, 18 Oct 2024 15:44:39 -0700 Subject: [PATCH] feat: remove enable webflux annotation --- .../graphql/server/spring/GraphQLServerCodecConfiguration.kt | 2 -- 1 file changed, 2 deletions(-) diff --git a/servers/graphql-kotlin-spring-server/src/main/kotlin/com/expediagroup/graphql/server/spring/GraphQLServerCodecConfiguration.kt b/servers/graphql-kotlin-spring-server/src/main/kotlin/com/expediagroup/graphql/server/spring/GraphQLServerCodecConfiguration.kt index 43e383f7bd..a7bbf29c0a 100644 --- a/servers/graphql-kotlin-spring-server/src/main/kotlin/com/expediagroup/graphql/server/spring/GraphQLServerCodecConfiguration.kt +++ b/servers/graphql-kotlin-spring-server/src/main/kotlin/com/expediagroup/graphql/server/spring/GraphQLServerCodecConfiguration.kt @@ -22,11 +22,9 @@ import com.alibaba.fastjson2.support.spring6.http.codec.Fastjson2Encoder import com.fasterxml.jackson.databind.ObjectMapper import org.springframework.context.annotation.Configuration import org.springframework.http.codec.ServerCodecConfigurer -import org.springframework.web.reactive.config.EnableWebFlux import org.springframework.web.reactive.config.WebFluxConfigurer @Configuration -@EnableWebFlux class GraphQLServerCodecConfiguration( private val config: GraphQLConfigurationProperties, private val objectMapper: ObjectMapper,