You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by sz...@apache.org on 2021/06/14 11:51:40 UTC

[nifi-minifi-cpp] branch MINIFICPP-1507 updated (3cea8d5 -> f2d0a6c)

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

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


    omit 3cea8d5  CompressContent/archive_read: restore archive_set_error call
    omit a8f6e2d  fix PutS3Object error
    omit d49b02c  review feedback
    omit af79a4a  MINIFICPP-1507 convert InputStream::read to size_t (squashed)
     add 876906f  MINIFICPP-1578 Upgrade OS versions in docker builds
     add 3c9fd89  MINIFICPP-1577: Separate build and test steps in ubuntu-20.04 ci job
     add 05ae25c  MINIFICPP-1568 Retry PDH processor run to fix test flakiness
     add 72e9c9e  Squashed commit of the following:
     add e51192e  MINIFICPP-1582 fixing build falure in centos ci job
     add 33d65ed  MINIFICPP-1583 windows build fix
     add 6020496  MINIFICPP-1581: set cmake policy CMP0096 to NEW to preserve the leading zeros in project version
     add 4d12658  MINIFICPP-1585 Rename enum values in ConsumeKafkaTests::PublishEvent
     add 8ec4932  MINIFICPP-1589 Adapt Azure tests to naming conventions to fix failures
     add acc245b  MINIFICPP-1507 convert InputStream::read to size_t (squashed)
     add e8ed857  review feedback
     add c7706ef  fix PutS3Object error
     add f2d0a6c  CompressContent/archive_read: restore archive_set_error call

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   (3cea8d5)
            \
             N -- N -- N   refs/heads/MINIFICPP-1507 (f2d0a6c)

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:
 .github/workflows/ci.yml                           |   8 +-
 .gitignore                                         |   2 +-
 CMakeLists.txt                                     |   3 +-
 README.md                                          |  14 +-
 centos.sh                                          |   4 +-
 cmake/DockerConfig.cmake                           |   4 +-
 controller/CMakeLists.txt                          |   2 +-
 debian.sh                                          |   4 +-
 docker/DockerBuild.sh                              |  17 +-
 docker/centos/Dockerfile                           |   7 +-
 docker/debian/Dockerfile                           |  12 +-
 docker/fedora/Dockerfile                           |   2 +-
 docker/{xenial => focal}/Dockerfile                |   5 +-
 .../features/file_system_operations.feature        |   4 +-
 .../minifi/core/SingleNodeDockerCluster.py         |   4 +-
 .../minifi/processors/PutAzureBlobStorage.py       |   4 +-
 extensions/ExtensionHeader.txt                     |   2 +-
 extensions/aws/processors/DeleteS3Object.h         |   4 +
 extensions/aws/processors/FetchS3Object.h          |   4 +
 extensions/aws/processors/ListS3.h                 |   4 +
 extensions/aws/processors/PutS3Object.h            |   4 +
 extensions/civetweb/processors/ListenHTTP.h        |   4 +
 extensions/libarchive/CompressContent.h            |   4 +
 extensions/libarchive/MergeContent.h               |  14 +-
 extensions/librdkafka/ConsumeKafka.h               |   4 +
 extensions/librdkafka/PublishKafka.h               |   4 +
 extensions/librdkafka/tests/ConsumeKafkaTests.cpp  |  30 +--
 .../tests/PublishKafkaOnScheduleTests.cpp          |   4 +-
 extensions/mqtt/processors/ConsumeMQTT.h           |   4 +
 extensions/mqtt/processors/PublishMQTT.h           |   6 +-
 .../pdh/tests/PerformanceDataMonitorTests.cpp      | 289 +++++++++++----------
 extensions/script/python/PythonCreator.h           |   1 +
 extensions/sftp/processors/FetchSFTP.h             |   3 +
 extensions/sftp/processors/ListSFTP.h              |   4 +
 extensions/sftp/processors/PutSFTP.h               |   3 +
 extensions/sql/processors/QueryDatabaseTable.h     |   5 +-
 .../standard-processors/processors/ExtractText.h   |  10 +-
 .../processors/GenerateFlowFile.h                  |   4 +
 .../standard-processors/processors/GetFile.h       |   4 +
 .../standard-processors/processors/HashContent.h   |  14 +-
 .../standard-processors/processors/ListenSyslog.h  |  10 +-
 .../standard-processors/processors/LogAttribute.h  |   4 +
 .../standard-processors/processors/PutFile.h       |   4 +
 .../standard-processors/processors/RetryFlowFile.h |   4 +
 .../processors/RouteOnAttribute.h                  |  14 +-
 .../standard-processors/processors/TailFile.h      |   4 +
 .../processors/UpdateAttribute.h                   |  16 +-
 .../tests/unit/ManifestTests.cpp                   |   9 +-
 .../tests/unit/ProcessorTests.cpp                  |  37 +++
 .../windows-event-log/ConsumeWindowsEventLog.h     |   4 +
 libminifi/CMakeLists.txt                           |   4 +-
 libminifi/include/agent/build_description.h        |  38 +--
 libminifi/include/core/Annotation.h                |  58 +++++
 libminifi/include/core/Connectable.h               |   2 +-
 libminifi/include/core/ProcessGroup.h              |   2 +
 libminifi/include/core/Processor.h                 |  10 +
 .../include/core/state/nodes/AgentInformation.h    |  14 +-
 libminifi/src/FlowController.cpp                   |   4 +
 libminifi/src/core/ProcessGroup.cpp                |   6 +
 libminifi/src/core/Processor.cpp                   |  39 ++-
 libminifi/test/TestBase.cpp                        |   6 +
 libminifi/test/TestBase.h                          |   2 +
 libminifi/test/resources/TestKafkaOnSchedule.yml   |  24 ++
 libminifi/test/resources/TestTailFile.yml          |   1 -
 main/CMakeLists.txt                                |   2 +-
 nanofi/CMakeLists.txt                              |   3 +-
 nanofi/ecu/CMakeLists.txt                          |   2 +-
 nanofi/examples/CMakeLists.txt                     |   2 +-
 68 files changed, 576 insertions(+), 274 deletions(-)
 rename docker/{xenial => focal}/Dockerfile (88%)
 create mode 100644 libminifi/include/core/Annotation.h