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.
2 parents 4852d52 + 529cc79 commit aedf900Copy full SHA for aedf900
cloudfoundry-client-reactor/src/main/java/org/cloudfoundry/reactor/uaa/UsernameProvider.java
@@ -49,8 +49,8 @@ final class UsernameProvider {
49
50
Mono<String> get() {
51
return getToken(this.connectionContext, this.tokenProvider)
52
+ .publishOn(Schedulers.elastic())
53
.map(this::getUsername)
- .subscribeOn(Schedulers.elastic())
54
.retry(1, t -> {
55
if (t instanceof ExpiredJwtException) {
56
this.tokenProvider.invalidate(this.connectionContext);
0 commit comments