Skip to content

Commit ac99eb3

Browse files
Change "project ID" to just "project" in log messages
1 parent 8e44557 commit ac99eb3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/src/main/java/org/elasticsearch/transport/RemoteClusterService.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -370,11 +370,11 @@ public synchronized void updateRemoteClusterCredentials(Supplier<Settings> setti
370370
// value was updated. Therefore, only consider added or removed aliases
371371
final int totalConnectionsToRebuild = result.addedClusterAliases().size() + result.removedClusterAliases().size();
372372
if (totalConnectionsToRebuild == 0) {
373-
logger.debug("project ID [{}] no connection rebuilding required after credentials update", projectId);
373+
logger.debug("project [{}] no connection rebuilding required after credentials update", projectId);
374374
listener.onResponse(null);
375375
return;
376376
}
377-
logger.info("project ID [{}] rebuilding [{}] connections after credentials update", projectId, totalConnectionsToRebuild);
377+
logger.info("project [{}] rebuilding [{}] connections after credentials update", projectId, totalConnectionsToRebuild);
378378
try (var connectionRefs = new RefCountingRunnable(() -> listener.onResponse(null))) {
379379
for (var clusterAlias : result.addedClusterAliases()) {
380380
maybeRebuildConnectionOnCredentialsChange(projectId, clusterAlias, settings, connectionRefs);

0 commit comments

Comments
 (0)