NIFI-1388 Corrected the property descriptor for the GetMongo query property

Signed-off-by: Aldrin Piri <aldrin@apache.org>
This commit is contained in:
jpercivall 2016-01-13 18:16:14 -05:00 committed by Aldrin Piri
parent 0db2dc9fc3
commit d42f1d4add
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ public class GetMongo extends AbstractMongoProcessor {
static final PropertyDescriptor QUERY = new PropertyDescriptor.Builder()
.name("Query")
.description("The selection criteria; must be a valid BSON document; if omitted the entire collection will be queried")
.description("The selection criteria; must be a valid MongoDB Extended JSON format; if omitted the entire collection will be queried")
.required(false)
.addValidator(DOCUMENT_VALIDATOR)
.build();