You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by je...@apache.org on 2019/02/08 15:34:17 UTC

[nifi-minifi-cpp] branch master updated: MINIFICPP-730 support dynamic properties for PublishKafka

This is an automated email from the ASF dual-hosted git repository.

jeremydyer pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git


The following commit(s) were added to refs/heads/master by this push:
     new 5ad6154  MINIFICPP-730 support dynamic properties for PublishKafka
5ad6154 is described below

commit 5ad6154607ce6a6cda2d97e402d1e767fc0c6971
Author: Jeremy Dyer <je...@apache.org>
AuthorDate: Fri Feb 8 09:39:50 2019 -0500

    MINIFICPP-730 support dynamic properties for PublishKafka
    
    Signed-off-by: Jeremy Dyer <je...@apache.org>
    
    This closes #481
---
 extensions/librdkafka/PublishKafka.h | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/extensions/librdkafka/PublishKafka.h b/extensions/librdkafka/PublishKafka.h
index 8160dbd..46915b9 100644
--- a/extensions/librdkafka/PublishKafka.h
+++ b/extensions/librdkafka/PublishKafka.h
@@ -175,6 +175,11 @@ public:
   };
 
 public:
+
+    virtual bool supportsDynamicProperties() {
+      return true;
+    };
+
   /**
    * Function that's executed when the processor is scheduled.
    * @param context process context.