fix: amqprs startup bug (#744)

This commit is contained in:
Tom
2026-05-10 07:22:26 -07:00
committed by GitHub
parent d52e84c5d3
commit 1100eaf46f
2 changed files with 18 additions and 13 deletions

View File

@@ -119,7 +119,7 @@ pub async fn web() -> Rocket<Build> {
.await
.expect("Failed to declare exchange");
let amqp = AMQP::new(connection, channel);
let mut amqp = AMQP::new(connection, channel);
amqp.configure_channels()
.await
.expect("Failed to configure channels");