This is an automated email from the ASF dual-hosted git repository. mattyb149 pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/nifi.git.
from daddf40 NIFI-7103 Adding PutDataLakeStorage Processor to provide native support for Azure Data Lake Storage Gen 2 Storage. add 4a2a911 NIFI-7293 Add in-memory janusgraph implementation of GraphClientService to help with live testing. No new revisions were added by this update. Summary of changes: .../nifi-graph-processors/pom.xml | 6 ++ .../nifi/processors/graph/ExecuteGraphQueryIT.java | 65 ++++++++++++++ .../nifi-graph-test-clients}/pom.xml | 36 +++++--- .../graph/InMemoryJanusGraphClientService.java | 100 +++++++++++++++++++++ .../InMemoryJanusGraphClientServiceTest.groovy | 63 +++++++++++++ nifi-nar-bundles/nifi-graph-bundle/pom.xml | 1 + 6 files changed, 257 insertions(+), 14 deletions(-) create mode 100644 nifi-nar-bundles/nifi-graph-bundle/nifi-graph-processors/src/test/java/org/apache/nifi/processors/graph/ExecuteGraphQueryIT.java copy nifi-nar-bundles/{nifi-splunk-bundle/nifi-splunk-processors => nifi-graph-bundle/nifi-graph-test-clients}/pom.xml (74%) create mode 100644 nifi-nar-bundles/nifi-graph-bundle/nifi-graph-test-clients/src/main/java/org/apache/nifi/graph/InMemoryJanusGraphClientService.java create mode 100644 nifi-nar-bundles/nifi-graph-bundle/nifi-graph-test-clients/src/test/groovy/org/apache/nifi/graph/InMemoryJanusGraphClientServiceTest.groovy