Skip to content

Commit

Permalink
Fix Kafka Integration tests (#2038)
Browse files Browse the repository at this point in the history
These connections were renamed in #1540, but were missed here.
  • Loading branch information
eerhardt committed Feb 2, 2024
1 parent 0d7749b commit 2000b4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/testproject/TestProject.IntegrationServiceA/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
builder.AddRabbitMQ("rabbitmq");
builder.AddMongoDBClient("mymongodb");
builder.AddOracleDatabaseDbContext<MyDbContext>("freepdb1");
builder.AddKafkaProducer<string, string>("kafkacontainer");
builder.AddKafkaConsumer<string, string>("kafkacontainer", consumerBuilder =>
builder.AddKafkaProducer<string, string>("kafka");
builder.AddKafkaConsumer<string, string>("kafka", consumerBuilder =>
{
consumerBuilder.Config.GroupId = "aspire-consumer-group";
consumerBuilder.Config.AutoOffsetReset = AutoOffsetReset.Earliest;
Expand Down

0 comments on commit 2000b4b

Please sign in to comment.