Update config to reflect valid option

Signed-off-by: raffi-tamizian <raffi.tamizian@justeattakeaway.com>
This commit is contained in:
raffi-tamizian
2024-05-17 13:17:24 +01:00
parent 0b4f60cca7
commit c6c0919ece
2 changed files with 10 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/backend-common': patch
---
Updates config.d.ts to reflect valid redis cache config option
+5
View File
@@ -191,6 +191,11 @@ export interface Config {
connection: string;
/** An optional default TTL (in milliseconds). */
defaultTtl?: number;
/**
* Whether or not [useRedisSets](https://github.com/jaredwray/keyv/tree/main/packages/redis#useredissets) should be configured to this redis cache.
* Defaults to true if unspecified.
*/
useRedisSets?: boolean;
}
| {
store: 'memcache';