Skip to content

Commit 101a96c

Browse files
committed
Fix line length
1 parent fe81ed3 commit 101a96c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/security/action/UpdateIndexMigrationVersionAction.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,8 @@ ClusterState execute(ClusterState currentState) {
160160
if (metadata.hasProject(projectId) == false) {
161161
// project has been deleted? nothing to do
162162
logger.warn(
163-
"Cannot update security index [{}] in project [{}] to migration-version [{}] because it does not exist in cluster state",
163+
"Cannot update security index [{}] in project [{}] to migration-version [{}]"
164+
+ " because it does not exist in cluster state",
164165
indexName,
165166
projectId,
166167
indexMigrationVersion

x-pack/plugin/security/qa/multi-project/src/javaRestTest/java/org/elasticsearch/xpack/security/support/SecurityIndexMigrationMultiProjectIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,8 @@ public void testMigrateSecurityIndex() throws Exception {
9393
clusterState,
9494
"metadata.projects"
9595
).stream().collect(Collectors.toMap(obj -> obj.get("id"), Function.identity()));
96-
for (var projectId : projectIds) {
9796

97+
for (var projectId : projectIds) {
9898
var projectState = projectStateById.get(projectId);
9999
assertThat("project [" + projectId + "] is not available in cluster state", projectState, notNullValue());
100100

0 commit comments

Comments
 (0)