This is an automated email from the ASF dual-hosted git repository.
lordgamez pushed a change to branch MINIFICPP-2680
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git
omit 2e73b3851 MINIFICPP-2680 Move Amazon Kinesis tests to modular docker
tests
omit 8a793ef67 MINIFICPP-2678 Move Grafana Loki tests to modular docker
tests
omit 22a74fce3 MINIFICPP-2677 Move GCP tests to modular docker tests
omit 9d59e30ce MINIFICPP-2689 Move Splunk tests to modular docker tests
omit d4e290d28 MINIFICPP-2675 Move Elasticsearch tests to modular docker
tests
omit 25f9b07bb MINIFICPP-2674 Move Couchbase tests to modular docker tests
omit d86d34acc MINIFICPP-2668 Move standard processor tests to modular
docker tests
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
add 667d6bd2f MINIFICPP-2668 Move standard processor tests to modular
docker tests
add e27bad66c MINIFICPP-2674 Move Couchbase tests to modular docker tests
add 3ecc14d4a MINIFICPP-2675 Move Elasticsearch tests to modular docker
tests
add 0d4a89869 MINIFICPP-2689 Move Splunk tests to modular docker tests
add 22d54f38d MINIFICPP-2677 Move GCP tests to modular docker tests
add a85a6ab23 MINIFICPP-2678 Move Grafana Loki tests to modular docker
tests
add 8dfeed627 MINIFICPP-2680 Move Amazon Kinesis 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 (2e73b3851)
\
N -- N -- N refs/heads/MINIFICPP-2680 (8dfeed627)
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 +
.../minifi_test_framework/containers/container.py | 1 -
.../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 ++---
docker/test/integration/features/steps/steps.py | 12 -
encrypt-config/FlowConfigEncryptor.cpp | 1 -
.../features/steps/couchbase_server_container.py | 2 +-
extensions/couchbase/tests/features/steps/steps.py | 3 +-
.../tests/features/steps/elastic_base_container.py | 2 +-
.../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/features/steps/diag_slave_container.py | 11 +-
.../tests/features/steps/steps.py | 2 +-
.../tests/features/steps/tcp_client_container.py | 10 +-
.../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 +-
49 files changed, 359 insertions(+), 974 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