Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ synchronized CompletionStage<RoutingTable> refreshRoutingTable( ConnectionContex
else if ( routingTable.isStaleFor( context.mode() ) )
{
// existing routing table is not fresh and should be updated
log.info( "Routing table for database '%s' is stale. %s", databaseName.description(), routingTable );
log.debug( "Routing table for database '%s' is stale. %s", databaseName.description(), routingTable );

CompletableFuture<RoutingTable> resultFuture = new CompletableFuture<>();
refreshRoutingTableFuture = resultFuture;
Expand Down Expand Up @@ -114,7 +114,7 @@ private synchronized void freshClusterCompositionFetched( ClusterComposition com
routingTableRegistry.removeAged();
connectionPool.retainAll( routingTableRegistry.allServers() );

log.info( "Updated routing table for database '%s'. %s", databaseName.description(), routingTable );
log.debug( "Updated routing table for database '%s'. %s", databaseName.description(), routingTable );

CompletableFuture<RoutingTable> routingTableFuture = refreshRoutingTableFuture;
refreshRoutingTableFuture = null;
Expand Down