Skip to content

Commit 6f9622b

Browse files
committed
Fixing line length
1 parent 4051f0f commit 6f9622b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/security/authz/store/ReservedRolesStore.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,8 @@ private static Map<String, RoleDescriptor> initializeReservedRoles() {
135135
.put(UsernamesField.BEATS_ROLE, new RoleDescriptor(UsernamesField.BEATS_ROLE,
136136
new String[] { "monitor", MonitoringBulkAction.NAME},
137137
new RoleDescriptor.IndicesPrivileges[]{
138-
RoleDescriptor.IndicesPrivileges.builder().indices(".monitoring-beats-*").privileges("create_index", "write").build()
138+
RoleDescriptor.IndicesPrivileges.builder()
139+
.indices(".monitoring-beats-*").privileges("create_index", "write").build()
139140
},
140141
null, MetadataUtils.DEFAULT_RESERVED_METADATA))
141142
.put(UsernamesField.APM_ROLE, new RoleDescriptor(UsernamesField.APM_ROLE,

0 commit comments

Comments
 (0)