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 9edcd75 commit ef53d4fCopy full SHA for ef53d4f
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
- String(process.env.LOG_RETENTION_DAYS ?? '14') + "d";
+ Number(process.env.LOG_RETENTION_DAYS ?? '14');
42
43
constructor(
44
@Inject(UserService)
0 commit comments