From 3ee39f1ce49f9645c3c60b3e0eb8aa80ab699577 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Ovejero?= Date: Mon, 7 Jun 2021 16:00:24 +0200 Subject: [PATCH] :pencil2: Update descriptions --- .../nodes/ElasticSearch/descriptions/DocumentDescription.ts | 4 ++-- .../nodes/ElasticSearch/descriptions/IndexDescription.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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, },