We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38d5e5c commit 9edcd75Copy full SHA for 9edcd75
backend/src/modules/device/controllers/device-log.controller.ts
@@ -38,7 +38,7 @@ export class DeviceLogController {
38
private result;
39
private storxBucket = process.env.STORX_BUCKET_NAME || '';
40
private logKeepDays =
41
- Number(process.env.LOG_RETENTION_DAYS ?? '14');
+ String(process.env.LOG_RETENTION_DAYS ?? '14') + "d";
42
43
constructor(
44
@Inject(UserService)
0 commit comments