Github user phrocker commented on a diff in the pull request:
https://github.com/apache/nifi-minifi-cpp/pull/457#discussion_r239819770
--- Diff: extensions/mqtt/processors/PublishMQTT.h ---
@@ -137,7 +137,7 @@ class PublishMQTT : public
processors::AbstractMQTTProcessor {
std::shared_ptr<logging::Logger> logger_;
};
-REGISTER_RESOURCE(PublishMQTT);
+REGISTER_RESOURCE(PublishMQTT, "This Processor puts the contents of a
FlowFile to a MQTT broker for a specified topic. The content of a FlowFile
becomes the payload of the MQTT message.");
--- End diff --
Hmm that's a good point. I'll see if I can clarify this, then.
---