fix: don't automatically set up rabbitmq in delta (#749)

fix: don't declare queues which seem to cause the backend to crash in prod
for now, these exchanges/queues/bindings will need to be declared manually. Hopefully the lapin rewrite will fix this.

Signed-off-by: IAmTomahawkx <iamtomahawkx@gmail.com>
This commit is contained in:
Tom
2026-05-15 12:17:36 -07:00
committed by GitHub
parent 8157e1f6e9
commit 7647cfc8d9
2 changed files with 4 additions and 4 deletions

View File

@@ -47,7 +47,7 @@ impl AMQP {
.expect("Failed to open RabbitMQ channel");
let mut resp = AMQP::new(connection, channel);
resp.configure_channels().await?;
//resp.configure_channels().await?;
Ok(resp)
}