Dmytro Nosan

Results 45 comments of Dmytro Nosan

Thanks @govindbalaji-s Once Apache Cassandra 5.0 is released I will take a look at what can be done.

Added to the documentation about this issue. Thanks.

I was initially thinking of the following approach: ```java @AutoConfiguration @ConditionalOnClass(Hooks.class) @ConditionalOnProperty(name = "spring.reactor.context-propagation", havingValue = "auto") @EnableConfigurationProperties(ReactorProperties.class) public class ReactorAutoConfiguration { ReactorAutoConfiguration() { Hooks.enableAutomaticContextPropagation(); } @Bean static LazyInitializationExcludeFilter reactorLazyInitializationExcludeFilter()...

Thanks, @wilkinsona `SmartInitializingSingleton` is a decent option. However, it has one downside: `enableAutomaticContextPropagation` will not be visible to other `SmartInitializingSingleton` beans, whereas the constructor-based approach does not have such an...

> There are still ordering concerns with the constructor-based approach as it leaves a window between a bean using Reactor during its standard creation/initialization and ReactorAutoConfiguration being created. How about...

> The documentation should clearly recommend developers permit the /error endpoint in security configuration when using stateless APIs. It is documented https://docs.spring.io/spring-security/reference/servlet/getting-started.html#servlet-hello-auto-configuration in Spring Security, and Spring Boot documentation refers...

> If [Spring Security](https://spring.io/projects/spring-security) is on the classpath, then web applications are secured by default. I think this [sentence](https://docs.spring.io/spring-boot/reference/web/spring-security.html ) can be rephrased a little bit with including information that...

I think the first one that mentions that applications are secured by default. Maybe it could be rephrased to something like: > If Spring Security is present on the classpath,...

I did some research regarding this bug, and frankly, it is quite a tricky one. **First run:** ```java TestcontainersLifecycleBeanPostProcessor -- initializeContainers() RestartScopeInitializer.RestartScope -- Restarter.getOrAddAttribute('redisContainer', ObjectFactory factory) -- 'redisContainer' does not...