NIFI-2980: Fixed doc for Elasticsearch URL property in ElasticsearchHttp processors

This closes #1173
This commit is contained in:
Matt Burgess 2016-11-02 14:00:17 -04:00 committed by Oleg Zhurakousky
parent 1abd017c35
commit 9e44734042
1 changed files with 1 additions and 1 deletions

View File

@ -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();