Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
ggivo committed Dec 12, 2024
1 parent 7eaaf6b commit 086ccf3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,6 @@ public void setAuthenticationHandler(RedisAuthenticationHandler handler) {
authHandler = handler;
}


private void dispatchAuthCommand(RedisCredentials credentials) {
if (credentials == null) {
return;
Expand Down
4 changes: 0 additions & 4 deletions src/main/java/io/lettuce/core/cluster/RedisClusterClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -565,8 +565,6 @@ <K, V> ConnectionFuture<StatefulRedisConnection<K, V>> connectToNodeAsync(RedisC
getFirstUri(), socketAddressSupplier,
() -> new CommandHandler(getClusterClientOptions(), getResources(), endpoint));



return connectionFuture.whenComplete((conn, throwable) -> {
if (throwable != null) {
connection.closeAsync();
Expand Down Expand Up @@ -637,8 +635,6 @@ <K, V> ConnectionFuture<StatefulRedisPubSubConnection<K, V>> connectPubSubToNode
getFirstUri(), socketAddressSupplier,
() -> new PubSubCommandHandler<>(getClusterClientOptions(), getResources(), codec, endpoint));



return connectionFuture.whenComplete((conn, throwable) -> {
if (throwable != null) {
connection.closeAsync();
Expand Down

0 comments on commit 086ccf3

Please sign in to comment.