This is an automated email from the ASF dual-hosted git repository.
lordgamez pushed a change to branch MINIFICPP-2666
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
omit 2640d9b1e MINIFICPP-2666 Move Kafka tests to modular docker tests
omit c95e6157e Add license
omit bd0eaeac7 Fix after rebase
omit f00550a35 Fix after rebase
omit 3e10a9703 Review update
omit 2390d5f06 MINIFICPP-2665 Move OPC UA tests to modular docker tests
add 26efc3d70 MINIFICPP-2670 Clean up volatile repositories
add 4be2c2e18 MINIFICPP-2671 Various ASan fixes
add f34569ee1 MINIFICPP-2665 Move OPC UA tests to modular docker tests
add 85fb25d55 MINIFICPP-2676 Variable Registry refactor
add a378b2ca7 MINIFICPP-2691 Fixing LogMetricsPublisher intermittent
failure
add 9574ad623 MINIFICPP-2692 Fix flow file removal for volatile
repositories
add 985912cad MINIFICPP-2666 Move Kafka tests to modular docker tests
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (2640d9b1e)
\
N -- N -- N refs/heads/MINIFICPP-2666 (985912cad)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
CONFIGURE.md | 23 +-
EXPRESSIONS.md | 10 +
.../containers/minifi_container.py | 8 +
.../minifi_test_framework/steps/checking_steps.py | 10 +
.../src/minifi_test_framework/steps/core_steps.py | 13 +-
core-framework/include/core/VariableRegistry.h | 60 ++---
encrypt-config/FlowConfigEncryptor.cpp | 1 -
.../tests/features/steps/kafka_server_container.py | 10 +-
extensions/kafka/tests/features/steps/steps.py | 13 +-
extensions/libarchive/UnfocusArchiveEntry.cpp | 7 +-
extensions/rocksdb-repos/tests/ProvenanceTests.cpp | 2 +-
extensions/rocksdb-repos/tests/RepoTests.cpp | 20 +-
extensions/splunk/tests/MockSplunkHEC.h | 3 +-
.../tests/features/repository.feature | 28 +--
.../tests/unit/AttributesToJSONTests.cpp | 2 +-
.../repository/LegacyVolatileContentRepository.h | 107 ---------
...enanceRepository.h => NoOpThreadedRepository.h} | 35 +--
.../core/repository/VolatileFlowFileRepository.h | 96 --------
libminifi/src/Configuration.cpp | 9 +-
libminifi/src/core/ProcessSession.cpp | 11 +-
libminifi/src/core/RepositoryFactory.cpp | 42 +---
.../repository/LegacyVolatileContentRepository.cpp | 159 -------------
libminifi/src/expression-language/Expression.cpp | 17 +-
libminifi/test/flow-tests/SessionTests.cpp | 1 -
.../integration/ConnectionCountingServer.cpp | 7 +-
libminifi/test/libtest/unit/ProvenanceTestHelper.h | 17 --
libminifi/test/libtest/unit/TestBase.cpp | 35 +--
libminifi/test/libtest/unit/TestBase.h | 2 +-
.../test/persistence-tests/PersistenceTests.cpp | 1 -
libminifi/test/unit/ExpressionLanguageTests.cpp | 26 +++
libminifi/test/unit/FlowFileQueueSwapTests.cpp | 1 +
libminifi/test/unit/LogMetricsPublisherTests.cpp | 33 +--
libminifi/test/unit/MetricsTests.cpp | 41 ----
libminifi/test/unit/ProcessContextExprTests.cpp | 31 +++
libminifi/test/unit/ProcessSessionTests.cpp | 45 ----
libminifi/test/unit/SiteToSiteTests.cpp | 1 +
libminifi/test/unit/VariableRegistryTests.cpp | 90 +++++++
.../performance/VolatileRepositoryPerfTests.cpp | 258 ---------------------
.../include/minifi-cpp/core/VariableRegistry.h | 2 +-
.../include/minifi-cpp/properties/Configuration.h | 9 +-
minifi_main/MiNiFiMain.cpp | 4 +-
41 files changed, 341 insertions(+), 949 deletions(-)
copy docker/test/integration/features/python_script.feature =>
extensions/standard-processors/tests/features/repository.feature (56%)
delete mode 100644
libminifi/include/core/repository/LegacyVolatileContentRepository.h
copy libminifi/include/core/repository/{VolatileProvenanceRepository.h =>
NoOpThreadedRepository.h} (55%)
delete mode 100644
libminifi/include/core/repository/VolatileFlowFileRepository.h
delete mode 100644
libminifi/src/core/repository/LegacyVolatileContentRepository.cpp
create mode 100644 libminifi/test/unit/VariableRegistryTests.cpp
delete mode 100644
libminifi/test/unit/performance/VolatileRepositoryPerfTests.cpp