From 7447fe69817f689b7946e02de61b9e5e0348e806 Mon Sep 17 00:00:00 2001 From: JannikStreek Date: Thu, 26 May 2022 20:56:00 +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 0f06e30..497ef34 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 = process.env[`STORAGE_TTL`] ?? 2592000; // 30 days as default + const ttl = parseInt(process.env[`STORAGE_TTL`] ?? 2592000, 10); // 30 days as default if (!uri) { this.logger.warn( `STORAGE_URI is undefined, will use non persistant in memory storage`,