Skip to content

Commit

Permalink
bump redis client version
Browse files Browse the repository at this point in the history
  • Loading branch information
Snawoot committed Jan 9, 2024
1 parent e044470 commit 9606cba
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion cmd/pricer/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"time"

"github.com/gin-gonic/gin"
"github.com/go-redis/redis/v8"
"github.com/redis/go-redis/v9"
"github.com/rs/zerolog/log"
_ "go.uber.org/automaxprocs"

Expand Down
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ require (
github.com/prometheus/client_model v0.4.0 // indirect
github.com/prometheus/common v0.44.0 // indirect
github.com/prometheus/procfs v0.10.1 // indirect
github.com/redis/go-redis/v9 v9.4.0 // indirect
github.com/shopspring/decimal v1.3.1 // indirect
github.com/twitchyliquid64/golang-asm v0.15.1 // indirect
github.com/ugorji/go/codec v1.2.11 // indirect
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,8 @@ github.com/prometheus/common v0.44.0 h1:+5BrQJwiBB9xsMygAB3TNvpQKOwlkc25LbISbrdO
github.com/prometheus/common v0.44.0/go.mod h1:ofAIvZbQ1e/nugmZGz4/qCb9Ap1VoSTIO7x0VV9VvuY=
github.com/prometheus/procfs v0.10.1 h1:kYK1Va/YMlutzCGazswoHKo//tZVlFpKYh+PymziUAg=
github.com/prometheus/procfs v0.10.1/go.mod h1:nwNm2aOCAYw8uTR/9bWRREkZFxAUcWzPHWJq+XBB/FM=
github.com/redis/go-redis/v9 v9.4.0 h1:Yzoz33UZw9I/mFhx4MNrB6Fk+XHO1VukNcCa1+lwyKk=
github.com/redis/go-redis/v9 v9.4.0/go.mod h1:hdY0cQFCN4fnSYT6TkisLufl/4W5UIXyv0b/CLO2V2M=
github.com/robfig/cron v1.1.0/go.mod h1:JGuDeoQd7Z6yL4zQhZ3OPEVHB7fL6Ka6skscFHfmt2k=
github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc=
github.com/rogpeppe/go-internal v1.8.0/go.mod h1:WmiCO8CzOY8rg0OYDC4/i/2WRWAB6poM+XZ2dLUbcbE=
Expand Down
2 changes: 1 addition & 1 deletion price/api_by_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"time"

"github.com/gin-gonic/gin"
"github.com/go-redis/redis/v8"
"github.com/redis/go-redis/v9"
"github.com/rs/zerolog/log"

"github.com/mysteriumnetwork/discovery/price/pricingbyservice"
Expand Down
2 changes: 1 addition & 1 deletion price/pricing/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"sync"
"time"

"github.com/go-redis/redis/v8"
"github.com/redis/go-redis/v9"
"github.com/rs/zerolog/log"
)

Expand Down
2 changes: 1 addition & 1 deletion price/pricing/price_getter.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"sync"
"time"

"github.com/go-redis/redis/v8"
"github.com/redis/go-redis/v9"
"github.com/rs/zerolog/log"
)

Expand Down
2 changes: 1 addition & 1 deletion price/pricing/price_updater.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"time"

"github.com/fln/pprotect"
"github.com/go-redis/redis/v8"
"github.com/redis/go-redis/v9"

"github.com/mysteriumnetwork/discovery/metrics"
"github.com/mysteriumnetwork/payments/units"
Expand Down
2 changes: 1 addition & 1 deletion price/pricingbyservice/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"sync"
"time"

"github.com/go-redis/redis/v8"
"github.com/redis/go-redis/v9"
"github.com/mysteriumnetwork/discovery/price/pricing"
"github.com/rs/zerolog/log"
)
Expand Down
2 changes: 1 addition & 1 deletion price/pricingbyservice/price_getter.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"sync"
"time"

"github.com/go-redis/redis/v8"
"github.com/redis/go-redis/v9"
"github.com/rs/zerolog/log"
)

Expand Down
2 changes: 1 addition & 1 deletion price/pricingbyservice/price_updater.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"time"

"github.com/fln/pprotect"
"github.com/go-redis/redis/v8"
"github.com/redis/go-redis/v9"

"github.com/mysteriumnetwork/discovery/metrics"
"github.com/mysteriumnetwork/discovery/price/pricing"
Expand Down
2 changes: 1 addition & 1 deletion sidecar/cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"time"

"github.com/gin-gonic/gin"
"github.com/go-redis/redis/v8"
"github.com/redis/go-redis/v9"
"github.com/mysteriumnetwork/discovery/config"
"github.com/mysteriumnetwork/discovery/metrics"
"github.com/mysteriumnetwork/discovery/price/pricing"
Expand Down

0 comments on commit 9606cba

Please sign in to comment.