mirror of https://github.com/apache/nifi.git
NIFI-2980: Fixed doc for Elasticsearch URL property in ElasticsearchHttp processors
This closes #1173
This commit is contained in:
parent
1abd017c35
commit
9e44734042
|
@ -53,7 +53,7 @@ public abstract class AbstractElasticsearchHttpProcessor extends AbstractElastic
|
|||
public static final PropertyDescriptor ES_URL = new PropertyDescriptor.Builder()
|
||||
.name("elasticsearch-http-url")
|
||||
.displayName("Elasticsearch URL")
|
||||
.description("Elasticsearch URL which will be connected to, including scheme, host, port, path. The default port for the REST API is 9200.")
|
||||
.description("Elasticsearch URL which will be connected to, including scheme (http, e.g.), host, and port. The default port for the REST API is 9200.")
|
||||
.required(true)
|
||||
.addValidator(StandardValidators.URL_VALIDATOR)
|
||||
.build();
|
||||
|
|
Loading…
Reference in New Issue