Skip to content

Commit

Permalink
UPDATE: go modules.
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaspeters committed Mar 19, 2024
1 parent 28aa94f commit 9eca26c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion controller_bin/redis/redis.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"context"

cfg "github.com/AVENTER-UG/mesos-m3s/controller/types"
goredis "github.com/go-redis/redis/v9"
goredis "github.com/redis/go-redis/v9"

"github.com/sirupsen/logrus"
)
Expand Down
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ require (
github.com/joonix/log v0.0.0-20230221083239-7988383bab32
github.com/mesos/mesos-go v0.0.11
github.com/rancher/wrangler v1.1.2
github.com/redis/go-redis/v9 v9.5.1
github.com/sirupsen/logrus v1.9.3
go.uber.org/zap v1.27.0
k8s.io/api v0.29.3
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -762,6 +762,8 @@ github.com/prometheus/procfs v0.13.0 h1:GqzLlQyfsPbaEHaQkO7tbDlriv/4o5Hudv6OXHGK
github.com/prometheus/procfs v0.13.0/go.mod h1:cd4PFCR54QLnGKPaKGA6l+cfuNXtht43ZKY6tow0Y1g=
github.com/rancher/wrangler v1.1.2 h1:oXbXo9k7y/H4drUpb4RM1c++vT9O3rpoNEfyusGykiU=
github.com/rancher/wrangler v1.1.2/go.mod h1:2k9MyhlBdjcutcBGoOJSUAz0HgDAXnMjv81d3n/AaQc=
github.com/redis/go-redis/v9 v9.5.1 h1:H1X4D3yHPaYrkL5X06Wh6xNVM/pX0Ft4RV0vMGvLBh8=
github.com/redis/go-redis/v9 v9.5.1/go.mod h1:hdY0cQFCN4fnSYT6TkisLufl/4W5UIXyv0b/CLO2V2M=
github.com/rogpeppe/clock v0.0.0-20190514195947-2896927a307a/go.mod h1:4r5QyqhjIWCcK8DO4KMclc5Iknq5qVBAlbYYzAbUScQ=
github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ=
github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
Expand Down
2 changes: 1 addition & 1 deletion redis/redis.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/AVENTER-UG/mesos-m3s/mesos"
mesosproto "github.com/AVENTER-UG/mesos-m3s/proto"
cfg "github.com/AVENTER-UG/mesos-m3s/types"
goredis "github.com/go-redis/redis/v9"
goredis "github.com/redis/go-redis/v9"

logrus "github.com/AVENTER-UG/mesos-m3s/logger"
)
Expand Down

0 comments on commit 9eca26c

Please sign in to comment.