Github user MikeThomsen commented on a diff in the pull request:
https://github.com/apache/nifi/pull/2443#discussion_r170042887
--- Diff:
nifi-nar-bundles/nifi-mongodb-bundle/nifi-mongodb-processors/src/test/java/org/apache/nifi/processors/mongodb/GetMongoTest.java
---
@@ -69,6 +70,7 @@
@Before
public void setup() {
runner = TestRunners.newTestRunner(GetMongo.class);
+ runner.setProperty(GetMongo.QUERY, "{}");
--- End diff --
Ok. What I'm going to do there is make it so that empty query is only valid
when there is no incoming connection.
---