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:
parent
e998fabf13
commit
7bcc8fa584
|
@ -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?;
|
||||||
|
|
Loading…
Reference in a new issue