File tree 2 files changed +4
-0
lines changed 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 15
15
* [ ENHANCEMENT] Query Frontend: Log number of split queries in ` query stats ` log. #5703
16
16
* [ BUGFIX] Distributor: Do not use label with empty values for sharding #5717
17
17
* [ BUGFIX] Query Frontend: queries with negative offset should check whether it is cacheable or not. #5719
18
+ * [ BUGFIX] Redis Cache: pass ` cache_size ` config correctly. #5734
18
19
19
20
20
21
## 1.16.0 2023-11-20
Original file line number Diff line number Diff line change @@ -2,10 +2,12 @@ package tsdb
2
2
3
3
import (
4
4
"flag"
5
+
5
6
"time"
6
7
7
8
"github.com/pkg/errors"
8
9
"github.com/thanos-io/thanos/pkg/cacheutil"
10
+ "github.com/thanos-io/thanos/pkg/model"
9
11
10
12
"github.com/cortexproject/cortex/pkg/util/tls"
11
13
)
@@ -97,5 +99,6 @@ func (cfg *RedisClientConfig) ToRedisClientConfig() cacheutil.RedisClientConfig
97
99
ServerName : cfg .TLS .ServerName ,
98
100
InsecureSkipVerify : cfg .TLS .InsecureSkipVerify ,
99
101
},
102
+ CacheSize : model .Bytes (cfg .CacheSize ),
100
103
}
101
104
}
You can’t perform that action at this time.
0 commit comments