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 741074e commit 1e025d4Copy full SHA for 1e025d4
src/Checks/LambdaMemoryLimit.php
@@ -18,7 +18,7 @@ public function check(): CheckResult
18
$recommendedMemory = 1024;
19
20
if ($memoryAvailableInMb < $recommendedMemory) {
21
- return $this->error("The memory limit configured is $memoryAvailableInMb MB, but $recommendedMemory MB is recommended.");
+ return $this->warning("The memory limit configured is $memoryAvailableInMb MB, but $recommendedMemory MB is recommended.");
22
}
23
24
return $this->ok();
0 commit comments