You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by fg...@apache.org on 2023/01/16 18:42:55 UTC

[nifi-minifi-cpp] branch MINIFICPP-2019_Fix-autogeneration-of-processors-md updated (60d04ddaf -> 1ce018827)

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

fgerlits pushed a change to branch MINIFICPP-2019_Fix-autogeneration-of-processors-md
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git


    omit 60d04ddaf add a missing include guard
    omit 07c908186 fix a typo
    omit af600ccb1 update PROCESSORS.md and unify Description strings with descriptions in PROCESSORS.md
    omit 5b0b26ce1 MINIFICPP-2019 Fix the auto-generation of PROCESSORS.md
     add 01a5665c9 MINIFICPP-1949 ConsumeWindowsEventLog should have the identifier regex compiled during onSchedule
     add bd3d818b1 MINIFICPP-2000 Fixing GetFile's inconsistent attributes
     add 8f210b76f MINIFICPP-1995 Add configuring path for flowfile_checkpoint directory
     add 8a6518e52 MINIFICPP-2023 Skip brew update to avoid python link failure
     add 57a9ed822 MINIFICPP-2019 Fix the auto-generation of PROCESSORS.md
     add 333f62313 update PROCESSORS.md and unify Description strings with descriptions in PROCESSORS.md
     add ccd6c0299 fix a typo
     add 1ce018827 add a missing include guard

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   (60d04ddaf)
            \
             N -- N -- N   refs/heads/MINIFICPP-2019_Fix-autogeneration-of-processors-md (1ce018827)

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                           |   7 +-
 CONFIGURE.md                                       | 165 +++++++++----------
 conf/minifi.properties                             |   1 +
 controller/Controller.h                            |   4 +-
 .../daemon-set-log-collection.yml                  |   1 +
 .../sidecar-log-collection.yml                     |   1 +
 extensions/http-curl/tests/C2DebugBundleTest.cpp   |   2 +-
 .../http-curl/tests/C2PropertiesUpdateTests.cpp    |   2 +-
 .../rocksdb-repos/DatabaseContentRepository.cpp    |   2 +-
 extensions/rocksdb-repos/FlowFileRepository.h      |   8 +-
 extensions/rocksdb-repos/ProvenanceRepository.h    |   2 +-
 extensions/script/tests/PythonManifestTests.cpp    |   2 +-
 .../standard-processors/processors/GetFile.cpp     |  24 ++-
 .../standard-processors/processors/GetFile.h       |   2 +-
 .../standard-processors/processors/ListFile.cpp    |   1 -
 .../tests/unit/AttributesToJSONTests.cpp           |  20 +--
 .../tests/unit/GetFileTests.cpp                    |  44 +++--
 .../tests/unit/ListFileTests.cpp                   |  30 ++++
 .../tests/unit/ProcessorTests.cpp                  |  12 +-
 .../tests/unit/PutFileTests.cpp                    |  34 ++--
 .../tests/unit/TailFileTests.cpp                   |   2 +-
 extensions/windows-event-log/Bookmark.cpp          |  67 ++++----
 extensions/windows-event-log/Bookmark.h            |  15 +-
 .../windows-event-log/ConsumeWindowsEventLog.cpp   | 179 +++++++++++----------
 .../windows-event-log/ConsumeWindowsEventLog.h     |  77 +++++----
 .../windows-event-log/tests/BookmarkTests.cpp      |   6 +-
 extensions/windows-event-log/tests/CWELTestUtils.h |   4 +-
 .../tests/ConsumeWindowsEventLogTests.cpp          | 135 +++++++++-------
 .../tests/MetadataWalkerTests.cpp                  |  63 +++++---
 .../windows-event-log/wel/MetadataWalker.cpp       |  37 +----
 extensions/windows-event-log/wel/MetadataWalker.h  |  37 ++---
 .../windows-event-log/wel/WindowsEventLog.cpp      | 134 ++++++++-------
 extensions/windows-event-log/wel/WindowsEventLog.h |  48 +++---
 libminifi/include/properties/Configuration.h       |   1 +
 libminifi/include/utils/OsUtils.h                  |   3 +
 libminifi/src/Configuration.cpp                    |   1 +
 libminifi/src/c2/C2Agent.cpp                       |   2 +-
 .../src/core/repository/FileSystemRepository.cpp   |   2 +-
 libminifi/src/utils/OsUtils.cpp                    |   4 +
 libminifi/test/unit/FilePatternTests.cpp           |  10 +-
 libminifi/test/unit/FileUtilsTests.cpp             |   6 +-
 minifi_main/MiNiFiMain.cpp                         |   2 +-
 42 files changed, 615 insertions(+), 584 deletions(-)