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

martinzink pushed a commit to branch MINIFICPP-2514
in repository https://gitbox.apache.org/repos/asf/nifi-minifi-cpp.git


The following commit(s) were added to refs/heads/MINIFICPP-2514 by this push:
     new 146ed44aa disable kafka temp
146ed44aa is described below

commit 146ed44aa87bbb2eaa3b2764ea5c5927759ad75f
Author: Martin Zink <[email protected]>
AuthorDate: Mon Jan 27 15:55:46 2025 +0100

    disable kafka temp
---
 cmake/VerifyPackageWithDocker.cmake                           | 2 +-
 docker/test/integration/features/google_cloud_storage.feature | 1 +
 docker/test/integration/features/steps/steps.py               | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/cmake/VerifyPackageWithDocker.cmake 
b/cmake/VerifyPackageWithDocker.cmake
index af201791a..ab4b34a63 100644
--- a/cmake/VerifyPackageWithDocker.cmake
+++ b/cmake/VerifyPackageWithDocker.cmake
@@ -28,7 +28,7 @@ function(ADD_PACKAGE_VERIFY TAG_PREFIX)
         endif()
     endforeach()
 
-    set(DISABLED_TAGS "SKIP_CI,NEEDS_NUMPY")
+    set(DISABLED_TAGS "SKIP_CI,NEEDS_NUMPY,ENABLE_KAFKA")
 
     add_custom_target(
             docker-verify-${TAG_PREFIX}
diff --git a/docker/test/integration/features/google_cloud_storage.feature 
b/docker/test/integration/features/google_cloud_storage.feature
index de64caff8..2d0b49c86 100644
--- a/docker/test/integration/features/google_cloud_storage.feature
+++ b/docker/test/integration/features/google_cloud_storage.feature
@@ -28,6 +28,7 @@ Feature: Sending data to Google Cloud Storage using 
PutGCSObject
     And a PutFile processor with the "Directory" property set to "/tmp/output"
     And the "success" relationship of the GetFile processor is connected to 
the PutGCSObject
     And the "success" relationship of the PutGCSObject processor is connected 
to the PutFile
+    And the "failure" relationship of the PutGCSObject processor is connected 
to the PutGCSObject
 
     When all instances start up
 
diff --git a/docker/test/integration/features/steps/steps.py 
b/docker/test/integration/features/steps/steps.py
index e0d24a434..fa9daae1d 100644
--- a/docker/test/integration/features/steps/steps.py
+++ b/docker/test/integration/features/steps/steps.py
@@ -737,7 +737,7 @@ def step_impl(context, content, topic_name):
         "ssl.key.location": client_key_file.name,
         "client.id": socket.gethostname()})
     producer.produce(topic_name, content.encode("utf-8"), 
callback=delivery_report)
-    producer.flush(50)
+    producer.flush(10)
 
 
 # Used for testing transactional message consumption

Reply via email to