File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1204,7 +1204,7 @@ fn config_overrides() {
1204
1204
redis : Some ( RedisCacheConfig {
1205
1205
url : "myotherredisurl" . to_owned ( ) ,
1206
1206
ttl : 24 * 3600 ,
1207
- key_prefix : String :: new ( ) ,
1207
+ key_prefix : "/redis/prefix" . into ( ) ,
1208
1208
} ) ,
1209
1209
..Default :: default ( )
1210
1210
} ,
@@ -1225,7 +1225,7 @@ fn config_overrides() {
1225
1225
} ) ,
1226
1226
redis : Some ( RedisCacheConfig {
1227
1227
url : "myredisurl" . to_owned ( ) ,
1228
- ttl : 24 * 3600 ,
1228
+ ttl : 25 * 3600 ,
1229
1229
key_prefix : String :: new ( ) ,
1230
1230
} ) ,
1231
1231
..Default :: default ( )
@@ -1240,7 +1240,7 @@ fn config_overrides() {
1240
1240
cache: Some ( CacheType :: Redis ( RedisCacheConfig {
1241
1241
url: "myotherredisurl" . to_owned( ) ,
1242
1242
ttl: 24 * 3600 ,
1243
- key_prefix: String :: new ( ) ,
1243
+ key_prefix: "/redis/prefix" . into ( ) ,
1244
1244
} ) , ) ,
1245
1245
fallback_cache: DiskCacheConfig {
1246
1246
dir: "/env-cache" . into( ) ,
You can’t perform that action at this time.
0 commit comments