Skip to content

Commit

Permalink
disable kafka temp
Browse files Browse the repository at this point in the history
  • Loading branch information
martinzink committed Jan 27, 2025
1 parent 052570a commit 146ed44
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmake/VerifyPackageWithDocker.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docker/test/integration/features/steps/steps.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 146ed44

Please sign in to comment.