This commit is contained in:
github-actions[bot] 2024-06-25 09:21:42 +00:00
parent 1895b29ac8
commit 9cf3243b0b
59 changed files with 233 additions and 248 deletions

View file

@ -236,7 +236,7 @@ function getTotalMemoryBytes(logger: Logger): number {
]
.map((file) => getCgroupMemoryLimitBytes(file, logger))
.filter((limit) => limit !== undefined)
.map((limit) => limit as number),
.map((limit) => limit),
);
}
const limit = Math.min(...limits);