Mark Paluch

Results 1230 comments of Mark Paluch

If you would like us to spend some time helping you to diagnose the problem, please spend some time describing it and, ideally, providing a [minimal yet complete sample](https://stackoverflow.com/help/mcve) that...

Care to add `ZINTERCARD` for the reactive API as well? Also, there should be also tests on the connection level to verify proper functionality of the `ZINTERCARD` on the Jedis/JedisCluster/Lettuce...

Thanks for your suggestion. Such an extension makes sense. Do you would like to submit a pull request?

If you would like us to spend some time helping you, please spend some time describing the issue.

May I close this ticket or is there anything else I can assist you with? Without a runnable reproducer we're not willing to invest any further time.

Thanks for bringing this up. We had such an idea a couple years ago but because most applications have been used together with another database and because Redis doesn't have...

Introducing `ROTATE` creates the expectation of credential propagation into the actual components as Spring Cloud Vault is built on top of Spring Boot. Right now, configuration properties objects aren't refreshed...

You can register a `ClientHttpRequestFactory` wrapped in `org.springframework.vault.config.AbstractVaultConfiguration.ClientFactoryWrapper`: ```java SpringApplication application = new SpringApplication(…); application.addBootstrapRegistryInitializer( registry -> { registry.registerIfAbsent(AbstractVaultConfiguration.ClientFactoryWrapper.class, ctx -> { HttpComponentsClientHttpRequestFactory factory = …; return new AbstractVaultConfiguration.ClientFactoryWrapper(factory); });...

Have you noticed that you're not using the customized `application` object, but instead, you're running `SpringApplication.run(VaultTestApplication.class);`? It should be `application.run(args)`.