Skip to content

Commit

Permalink
chore: use the versioned queue client (#15)
Browse files Browse the repository at this point in the history
* chore: use the versioned queue client
  • Loading branch information
jrwbabylonlab authored May 15, 2024
1 parent 9dc0883 commit 894bb04
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions .circleci/values-staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ configFiles:
processing_timeout: 5 # 5 second
msg_max_retry_attempts: 10
requeue_delay_time: 300
queue_type: quorum
metrics:
host: 0.0.0.0
port: 2112
1 change: 1 addition & 0 deletions .circleci/values-testnet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ configFiles:
processing_timeout: 5 # 5 second
msg_max_retry_attempts: 10
requeue_delay_time: 300
queue_type: quorum
metrics:
host: 0.0.0.0
port: 2112
1 change: 1 addition & 0 deletions config/config-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ queue:
processing_timeout: 5 # 5 second
msg_max_retry_attempts: 10
requeue_delay_time: 300
queue_type: quorum
metrics:
host: 0.0.0.0
port: 2112
1 change: 1 addition & 0 deletions config/config-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ queue:
processing_timeout: 5 # 5 second
msg_max_retry_attempts: 3
requeue_delay_time: 60
queue_type: quorum
metrics:
host: 0.0.0.0
port: 2112
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/babylonchain/staking-expiry-checker
go 1.21.6

require (
github.com/babylonchain/staking-queue-client v0.0.0-20240424061128-3ac950ef5f27
github.com/babylonchain/staking-queue-client v0.2.0
github.com/btcsuite/btcd v0.24.0
github.com/rabbitmq/amqp091-go v1.9.0
github.com/spf13/viper v1.18.2
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
github.com/aead/siphash v1.0.1/go.mod h1:Nywa3cDsYNNK3gaciGTWPwHt0wlpNV15vwmswBAUSII=
github.com/babylonchain/staking-queue-client v0.0.0-20240424061128-3ac950ef5f27 h1:qVf88e5VrG4Rq1AZm188h3alXwB4d0YYs0eyHo+9BWw=
github.com/babylonchain/staking-queue-client v0.0.0-20240424061128-3ac950ef5f27/go.mod h1:mEgA6N3SnwFwGEOsUYr/HdjpKa13Wck08MS7VY/Icvo=
github.com/babylonchain/staking-queue-client v0.2.0 h1:kktKgXJXDAheBv82s7LV5L2CPAfzhtHllNrIopXGjIo=
github.com/babylonchain/staking-queue-client v0.2.0/go.mod h1:mEgA6N3SnwFwGEOsUYr/HdjpKa13Wck08MS7VY/Icvo=
github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM=
github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw=
github.com/btcsuite/btcd v0.20.1-beta/go.mod h1:wVuoA8VJLEcwgqHBwHmzLRazpKxTv13Px/pDuV7OomQ=
Expand Down
1 change: 1 addition & 0 deletions tests/config-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ queue:
processing_timeout: 60 # 5 second
msg_max_retry_attempts: 2
requeue_delay_time: 5
queue_type: quorum
metrics:
host: 0.0.0.0
port: 2113

0 comments on commit 894bb04

Please sign in to comment.