Skip to content

Commit 146ed44

Browse files
committed
disable kafka temp
1 parent 052570a commit 146ed44

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

cmake/VerifyPackageWithDocker.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ function(ADD_PACKAGE_VERIFY TAG_PREFIX)
2828
endif()
2929
endforeach()
3030

31-
set(DISABLED_TAGS "SKIP_CI,NEEDS_NUMPY")
31+
set(DISABLED_TAGS "SKIP_CI,NEEDS_NUMPY,ENABLE_KAFKA")
3232

3333
add_custom_target(
3434
docker-verify-${TAG_PREFIX}

docker/test/integration/features/google_cloud_storage.feature

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ Feature: Sending data to Google Cloud Storage using PutGCSObject
2828
And a PutFile processor with the "Directory" property set to "/tmp/output"
2929
And the "success" relationship of the GetFile processor is connected to the PutGCSObject
3030
And the "success" relationship of the PutGCSObject processor is connected to the PutFile
31+
And the "failure" relationship of the PutGCSObject processor is connected to the PutGCSObject
3132

3233
When all instances start up
3334

docker/test/integration/features/steps/steps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@ def step_impl(context, content, topic_name):
737737
"ssl.key.location": client_key_file.name,
738738
"client.id": socket.gethostname()})
739739
producer.produce(topic_name, content.encode("utf-8"), callback=delivery_report)
740-
producer.flush(50)
740+
producer.flush(10)
741741

742742

743743
# Used for testing transactional message consumption

0 commit comments

Comments
 (0)