CAPS for consistency (#545)

This commit is contained in:
acelinkio 2024-06-17 22:53:09 -07:00 committed by GitHub
parent 9dcbcce137
commit 9baee99729
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -36,7 +36,7 @@ public static class RabbitMqModule
UserName = builder.Configuration.GetValue("RABBITMQ_DEFAULT_USER", "guest"), UserName = builder.Configuration.GetValue("RABBITMQ_DEFAULT_USER", "guest"),
Password = builder.Configuration.GetValue("RABBITMQ_DEFAULT_PASS", "guest"), Password = builder.Configuration.GetValue("RABBITMQ_DEFAULT_PASS", "guest"),
HostName = builder.Configuration.GetValue("RABBITMQ_HOST", "rabbitmq"), HostName = builder.Configuration.GetValue("RABBITMQ_HOST", "rabbitmq"),
Port = builder.Configuration.GetValue("RABBITMQ_Port", 5672), Port = builder.Configuration.GetValue("RABBITMQ_PORT", 5672),
}; };
return factory.CreateConnection(); return factory.CreateConnection();