Skip to content

Commit f32bb70

Browse files
authored
Trivial bracket fix for remote cluster warn message (#136516)
1 parent b0ef2b4 commit f32bb70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ public void onResponse(RemoteClusterConnectionStatus status) {
306306

307307
@Override
308308
public void onFailure(Exception e) {
309-
logger.warn(() -> "project [" + projectId + " failed to update remote cluster connection [" + clusterAlias + "]", e);
309+
logger.warn(() -> "project [" + projectId + "] failed to update remote cluster connection [" + clusterAlias + "]", e);
310310
}
311311
}, latch::countDown));
312312

0 commit comments

Comments
 (0)