Skip to content

Commit 1220bc3

Browse files
authored
Clarifies RabbitMQ connection configuration (#49)
Renames the RabbitMQ configuration setting to CatsRabbitMQ to clearly indicate that Meow uses the CATS RabbitMQ instance.
1 parent c33346b commit 1220bc3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Meow/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
builder.Services.AddRebus(configure =>
1919
{
20-
var connectionString = builder.Configuration.GetConnectionString("RabbitMQ");
20+
var connectionString = builder.Configuration.GetConnectionString("CatsRabbitMQ");
2121
var rabbitSettings = builder.Configuration.GetRequiredSection("RabbitSettings");
2222

2323
string queueName = rabbitSettings["DmsService"]!,

src/Meow/appsettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"DeliusRunningPictureDb": "",
55
"OfflocRunningPictureDb": "",
66
"ClusterDb": "",
7-
"RabbitMQ": "" // Meow uses the CATS RabbitMQ instance
7+
"CatsRabbitMQ": "" // Meow uses the CATS RabbitMQ instance
88
},
99
"Serilog": {
1010
"MinimumLevel": {

0 commit comments

Comments
 (0)