You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by lo...@apache.org on 2022/11/03 12:10:56 UTC

[nifi-minifi-cpp] branch main updated (c5d58e883 -> f4c8ec1a5)

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

lordgamez pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git


    from c5d58e883 MINIFICPP-1967 Add batch processing of lines in TailFile
     new e568e9448 MINIFICPP-1963 fix linter issue
     new f4c8ec1a5 MINIFICPP-1974 - Update rocksdb to compile with clang15

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 cmake/BundledRocksDB.cmake        | 4 ++--
 libminifi/src/SchedulingAgent.cpp | 6 ++++--
 2 files changed, 6 insertions(+), 4 deletions(-)


[nifi-minifi-cpp] 02/02: MINIFICPP-1974 - Update rocksdb to compile with clang15

Posted by lo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit f4c8ec1a59749bee17813d9bffefd2cd0d63e4dd
Author: Arpad Boda <ab...@apache.org>
AuthorDate: Thu Nov 3 00:28:30 2022 +0100

    MINIFICPP-1974 - Update rocksdb to compile with clang15
    
    Signed-off-by: Gabor Gyimesi <ga...@gmail.com>
    
    This closes #1445
---
 cmake/BundledRocksDB.cmake | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cmake/BundledRocksDB.cmake b/cmake/BundledRocksDB.cmake
index b7dfcc1e9..989204ebc 100644
--- a/cmake/BundledRocksDB.cmake
+++ b/cmake/BundledRocksDB.cmake
@@ -49,8 +49,8 @@ function(use_bundled_rocksdb SOURCE_DIR BINARY_DIR)
     # Build project
     ExternalProject_Add(
             rocksdb-external
-            URL "https://github.com/facebook/rocksdb/archive/v6.20.3.tar.gz"
-            URL_HASH "SHA256=c6502c7aae641b7e20fafa6c2b92273d935d2b7b2707135ebd9a67b092169dca"
+            URL "https://github.com/facebook/rocksdb/archive/refs/tags/v6.29.5.tar.gz"
+            URL_HASH "SHA256=ddbf84791f0980c0bbce3902feb93a2c7006f6f53bfd798926143e31d4d756f0"
             SOURCE_DIR "${BINARY_DIR}/thirdparty/rocksdb-src"
             CMAKE_ARGS ${ROCKSDB_CMAKE_ARGS}
             BUILD_BYPRODUCTS "${BINARY_DIR}/thirdparty/rocksdb-install/${BYPRODUCT}"


[nifi-minifi-cpp] 01/02: MINIFICPP-1963 fix linter issue

Posted by lo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit e568e9448f13df386975e4974594a9a9113fc191
Author: Marton Szasz <sz...@apache.org>
AuthorDate: Thu Nov 3 09:31:24 2022 +0100

    MINIFICPP-1963 fix linter issue
    
    Signed-off-by: Gabor Gyimesi <ga...@gmail.com>
    
    This closes #1446
---
 libminifi/src/SchedulingAgent.cpp | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/libminifi/src/SchedulingAgent.cpp b/libminifi/src/SchedulingAgent.cpp
index 4fbd8c9a4..5ad80fc9a 100644
--- a/libminifi/src/SchedulingAgent.cpp
+++ b/libminifi/src/SchedulingAgent.cpp
@@ -115,10 +115,12 @@ bool SchedulingAgent::onTrigger(core::Processor* processor, const std::shared_pt
   try {
     processor->onTrigger(processContext, sessionFactory);
   } catch (const std::exception& exception) {
-    logger_->log_warn("Caught Exception during SchedulingAgent::onTrigger of processor %s (uuid: %s), type: %s, what: %s", processor->getName(), processor->getUUIDStr(), typeid(exception).name(), exception.what());
+    logger_->log_warn("Caught Exception during SchedulingAgent::onTrigger of processor %s (uuid: %s), type: %s, what: %s",
+        processor->getName(), processor->getUUIDStr(), typeid(exception).name(), exception.what());
     processor->yield(admin_yield_duration_);
   } catch (...) {
-    logger_->log_warn("Caught Exception during SchedulingAgent::onTrigger of processor %s (uuid: %s), type: %s", processor->getName(), processor->getUUIDStr(), getCurrentExceptionTypeName());
+    logger_->log_warn("Caught Exception during SchedulingAgent::onTrigger of processor %s (uuid: %s), type: %s",
+        processor->getName(), processor->getUUIDStr(), getCurrentExceptionTypeName());
     processor->yield(admin_yield_duration_);
   }
   processor->decrementActiveTask();