From 7ba3f69a46df6f02a3753c803598adb71ea3a208 Mon Sep 17 00:00:00 2001 From: JannikStreek Date: Thu, 26 May 2022 20:50:45 +0200 Subject: [PATCH] Update storage.service.ts --- src/storage/storage.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage/storage.service.ts b/src/storage/storage.service.ts index 09466cd..0f06e30 100644 --- a/src/storage/storage.service.ts +++ b/src/storage/storage.service.ts @@ -8,7 +8,7 @@ export class StorageService { constructor() { const uri = process.env[`STORAGE_URI`]; - const ttl = 2592000; // 30 days + const ttl = process.env[`STORAGE_TTL`] ?? 2592000; // 30 days as default if (!uri) { this.logger.warn( `STORAGE_URI is undefined, will use non persistant in memory storage`,