chore(gerrit-generic-vcs-filter): fix the routing key

We were catching nothing with that key.

Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
This commit is contained in:
raito 2024-12-16 01:25:27 +01:00
parent e998fabf13
commit 7bcc8fa584

View file

@ -59,7 +59,7 @@ async fn main() -> Result<(), Box<dyn Error>> {
chan.bind_queue(easyamqp::BindQueueConfig { chan.bind_queue(easyamqp::BindQueueConfig {
queue: queue_name.clone(), queue: queue_name.clone(),
exchange: "gerrit-events".to_owned(), exchange: "gerrit-events".to_owned(),
routing_key: Some("gerrit.events.*".to_owned()), routing_key: Some("gerrit.events".to_owned()),
no_wait: false, no_wait: false,
}) })
.await?; .await?;