diff --git a/packages/nodes-base/nodes/ElasticSearch/descriptions/DocumentDescription.ts b/packages/nodes-base/nodes/ElasticSearch/descriptions/DocumentDescription.ts index 8dfd828865..36c63623cf 100644 --- a/packages/nodes-base/nodes/ElasticSearch/descriptions/DocumentDescription.ts +++ b/packages/nodes-base/nodes/ElasticSearch/descriptions/DocumentDescription.ts @@ -252,7 +252,7 @@ export const documentFields = [ { displayName: 'Allow No Indices', name: 'allow_no_indices', - description: 'If false, return an error if any wildcard expression, index alias, or _all value targets only missing or closed indices. Defaults to true.', + description: 'If false, return an error if any of the following targets only missing/closed indices: wildcard expression, index alias, or _all value. Defaults to true.', type: 'boolean', default: true, }, @@ -340,7 +340,7 @@ export const documentFields = [ { displayName: 'Max Concurrent Shard Requests', name: 'max_concurrent_shard_requests', - description: 'Define the number of concurrent shard requests per node this search executes concurrently. Defaults to 5.', + description: 'Define the number of shard requests per node this search executes concurrently. Defaults to 5.', type: 'number', default: 5, }, diff --git a/packages/nodes-base/nodes/ElasticSearch/descriptions/IndexDescription.ts b/packages/nodes-base/nodes/ElasticSearch/descriptions/IndexDescription.ts index f12fbf23c0..a738527c5b 100644 --- a/packages/nodes-base/nodes/ElasticSearch/descriptions/IndexDescription.ts +++ b/packages/nodes-base/nodes/ElasticSearch/descriptions/IndexDescription.ts @@ -205,7 +205,7 @@ export const indexFields = [ { displayName: 'Allow No Indices', name: 'allow_no_indices', - description: 'If false, the request returns an error if any wildcard expression, index alias,
or _all value targets only missing or closed indices. Defaults to true.', + description: 'If false, return an error if any of the following targets only missing/closed indices: wildcard expression, index alias, or _all value. Defaults to true.', type: 'boolean', default: true, },