We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75fe1ea commit d4d6800Copy full SHA for d4d6800
vault/src/main/java/io/scalecube/security/vault/VaultServiceRolesInstaller.java
@@ -166,7 +166,7 @@ public VaultServiceRolesInstaller roleTtl(String roleTtl) {
166
* keys) to use it for machine-to-machine authentication.
167
*/
168
public Mono<Void> install() {
169
- return Mono.fromRunnable(this::install0)
+ return Mono.defer(this::install0)
170
.subscribeOn(Schedulers.boundedElastic())
171
.doOnSubscribe(s -> LOGGER.debug("[install] Installing vault service roles"))
172
.doOnSuccess(s -> LOGGER.debug("[install][success] Installed vault service roles"))
0 commit comments