Mark Bonnekessel

Results 19 comments of Mark Bonnekessel

The problem with `spring.cloud.config.server.failOnCompositeError=false` is that you don't get any failure on the health-endpoint, showing that the main repository is not available. Furthermore if all repositories are not accessible, the...

Hm, that's sad because that requires spring-vault-core as a dependency in every application. The problem with a custom implementation of SessionManager is that i don't see any place to inject...

Finally i got it working with this (ugly) solution: ``` @Bean public BeanPostProcessor sessionManagerBeanPostProcessor(AbstractVaultConfiguration vaultConfiguration) { return new BeanPostProcessor() { @Override public Object postProcessAfterInitialization(Object bean, String beanName) throws BeansException {...

I have the same problem. I noticed that if I use the deprecated FlywayTestExecutionListener from org.flywaydb.test.junit.FlywayTestExecutionListener, i can use FlywayTest on abstract classes.

@adinauer the loggers are configured like this: ``` ``` If i manually define the SentryAppender in logback.xml and use appender-ref for all loggers, i cannot use the comfortable configuration through...

I had a simular problem and was able to reproduce it with following steps: 1. Start cloudconfigserver 2. Edit /etc/hosts on the host running cloud config server to route the...

Sorry @adinauer, i overlooked your feedback. Your changes look good to me.

Hi @spencergibb, are there any plans to implement this?