Skip to content

Commit

Permalink
fix: add mq tf config to lh
Browse files Browse the repository at this point in the history
  • Loading branch information
preethamr committed Oct 16, 2023
1 parent 704264d commit ad7b9a6
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions ops/testnet/staging/core/config.tf
Original file line number Diff line number Diff line change
Expand Up @@ -300,8 +300,28 @@ locals {
databaseWriter = {
url = local.default_db_url
}
main = "1735353714"
proverBatchSize = 1
main = "1735353714"
proverBatchSize = {
# "1668247156" = 10,
"9991" = 10,
"1735353714" = 10,
# "2053862260" = 10,
"1734439522" = 10,
"1735356532" = 10
}
messageQueue = {
connection = {
uri = "amqps://${var.rmq_mgt_user}:${var.rmq_mgt_password}@${module.centralised_message_queue.aws_mq_amqp_endpoint}"
}
exchange = {
name = "proverX"
type = "direct"
publishTimeout = 1000
persistent = true
durable = true
}
prefetchSize = 1
}
})

local_relayer_config = jsonencode({
Expand Down

0 comments on commit ad7b9a6

Please sign in to comment.