This is an automated email from the ASF dual-hosted git repository.
fgerlits pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git.
from 4a94894 MINIFICPP-1725 Upgrade libwebsockets and remove workaround
new 9bd409b MINIFICPP-1748 - Make log properties configurable through c2
protocol
new e0257d8 MINIFICPP-1750 Fix C2 clear corecomponent state command
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:
.../tests/C2ClearCoreComponentStateTest.cpp | 152 ++++++++++++++++
extensions/http-curl/tests/C2DebugBundleTest.cpp | 10 +-
.../http-curl/tests/C2PropertiesUpdateTests.cpp | 195 +++++++++++++++++++++
extensions/http-curl/tests/CMakeLists.txt | 2 +
.../http-curl/tests/EmptyFlow.h | 11 +-
extensions/http-curl/tests/HTTPHandlers.h | 20 ++-
libminifi/include/c2/C2Agent.h | 4 +-
libminifi/include/core/Core.h | 19 +-
.../include/core/logging/LoggerConfiguration.h | 2 +
.../core/logging/internal/LogCompressorSink.h | 8 +
libminifi/include/properties/Configure.h | 21 ++-
libminifi/include/properties/Properties.h | 37 +++-
libminifi/include/utils/StagingQueue.h | 4 +
libminifi/include/utils/TestUtils.h | 2 +-
libminifi/src/Configure.cpp | 26 +++
libminifi/src/c2/C2Agent.cpp | 94 +++++-----
libminifi/src/core/logging/LoggerConfiguration.cpp | 93 ++++++----
.../core/logging/internal/CompressionManager.cpp | 18 +-
libminifi/src/properties/Properties.cpp | 18 +-
libminifi/src/utils/crypto/EncryptionManager.cpp | 2 +-
libminifi/test/TestBase.cpp | 10 +-
libminifi/test/TestBase.h | 67 ++++---
main/MiNiFiMain.cpp | 2 +-
23 files changed, 643 insertions(+), 174 deletions(-)
create mode 100644 extensions/http-curl/tests/C2ClearCoreComponentStateTest.cpp
create mode 100644 extensions/http-curl/tests/C2PropertiesUpdateTests.cpp
copy libminifi/test/Catch.h => extensions/http-curl/tests/EmptyFlow.h (82%)