1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-06-18 04:40:03 +02:00

Upgrade from redis v8 to v9

This commit is contained in:
Henrik Hautakoski 2023-06-05 13:25:01 +02:00
parent c2d60a1240
commit a91df0c39e
14 changed files with 102 additions and 127 deletions

View file

@ -5,7 +5,7 @@ import (
"time"
eos "github.com/eoscanada/eos-go"
redis_cache "github.com/go-redis/cache/v8"
redis_cache "github.com/go-redis/cache/v9"
)
type Cache struct {

View file

@ -6,8 +6,8 @@ import (
"time"
eos "github.com/eoscanada/eos-go"
redis_cache "github.com/go-redis/cache/v8"
"github.com/go-redis/redismock/v8"
redis_cache "github.com/go-redis/cache/v9"
"github.com/go-redis/redismock/v9"
"github.com/stretchr/testify/assert"
)

View file

@ -6,8 +6,8 @@ import (
"time"
eos "github.com/eoscanada/eos-go"
redis_cache "github.com/go-redis/cache/v8"
"github.com/go-redis/redis/v8"
redis_cache "github.com/go-redis/cache/v9"
"github.com/redis/go-redis/v9"
)
type AbiManager struct {