Skip to content

Commit

Permalink
Merge branch 'main' into bug/consumer-not-called
Browse files Browse the repository at this point in the history
  • Loading branch information
niemyjski committed Sep 3, 2024
2 parents eebfa32 + 21a7b22 commit b493bcd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
11 changes: 8 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
# https://raw.githubusercontent.com/bitnami/bitnami-docker-kafka/master/docker-compose.yml
version: "2"

services:
kafka:
hostname: kafka
container_name: kafka
image: docker.io/bitnami/kafka:3.6.1
image: docker.io/bitnami/kafka:3.8.0
ports:
- "9092:9092"
- "29092:29092"
Expand All @@ -28,11 +27,17 @@ services:
- KAFKA_CFG_TRANSACTION_STATE_LOG_REPLICATION_FACTOR=1
volumes:
- "kafkadata:/bitnami"
deploy:
resources:
limits:
memory: 1536m

ready:
image: andrewlock/wait-for-dependencies
command: kafka:9092
depends_on:
- kafka

volumes:
kafkadata:
driver: local
driver: local
2 changes: 1 addition & 1 deletion src/Foundatio.Kafka/Foundatio.Kafka.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<PackageReference Include="Confluent.Kafka" Version="2.5.2" />
<PackageReference Include="Confluent.Kafka" Version="2.5.3" />

<PackageReference Include="Foundatio" Version="11.0.2" Condition="'$(ReferenceFoundatioSource)' == '' OR '$(ReferenceFoundatioSource)' == 'false'" />
<ProjectReference Include="..\..\..\Foundatio\src\Foundatio\Foundatio.csproj" Condition="'$(ReferenceFoundatioSource)' == 'true'" />
Expand Down

0 comments on commit b493bcd

Please sign in to comment.