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

[nifi-minifi-cpp] branch master updated: MINIFICPP-984 - Fix linter errors

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

phrocker 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 54d2f24  MINIFICPP-984 - Fix linter errors
     new 471b5cb  Merge pull request #626 from bakaid/MINIFICPP-984-linter
54d2f24 is described below

commit 54d2f24905e61bc96018d769ade5293e7486f8c0
Author: Daniel Bakai <ba...@gmail.com>
AuthorDate: Wed Aug 14 11:59:44 2019 +0200

    MINIFICPP-984 - Fix linter errors
---
 extensions/standard-processors/processors/LogAttribute.cpp | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/extensions/standard-processors/processors/LogAttribute.cpp b/extensions/standard-processors/processors/LogAttribute.cpp
index 1dbaf4a..458b6e5 100644
--- a/extensions/standard-processors/processors/LogAttribute.cpp
+++ b/extensions/standard-processors/processors/LogAttribute.cpp
@@ -56,9 +56,13 @@ core::Property LogAttribute::AttributesToIgnore(
 core::Property LogAttribute::LogPayload(core::PropertyBuilder::createProperty("Log Payload")->withDescription("If true, the FlowFile's payload will be logged, in addition to its attributes."
                                                                                                               "otherwise, just the Attributes will be logged")->withDefaultValue<bool>(false)->build());
 
-core::Property LogAttribute::HexencodePayload(core::PropertyBuilder::createProperty("Hexencode Payload")->withDescription("If true, the FlowFile's payload will be logged in a hexencoded format")->withDefaultValue<bool>(false)->build());
+core::Property LogAttribute::HexencodePayload(
+    core::PropertyBuilder::createProperty("Hexencode Payload")->withDescription(
+        "If true, the FlowFile's payload will be logged in a hexencoded format")->withDefaultValue<bool>(false)->build());
 
-core::Property LogAttribute::MaxPayloadLineLength(core::PropertyBuilder::createProperty("Maximum Payload Line Length")->withDescription("The logged payload will be broken into lines this long. 0 means no newlines will be added.")->withDefaultValue<uint32_t>(80U)->build());
+core::Property LogAttribute::MaxPayloadLineLength(
+    core::PropertyBuilder::createProperty("Maximum Payload Line Length")->withDescription(
+        "The logged payload will be broken into lines this long. 0 means no newlines will be added.")->withDefaultValue<uint32_t>(80U)->build());
 
 core::Property LogAttribute::LogPrefix(
     core::PropertyBuilder::createProperty("Log Prefix")->withDescription("Log prefix appended to the log lines. It helps to distinguish the output of multiple LogAttribute processors.")->build());