LowResourceMonitor.getReasons should include detailed reason instead of hard-coded message (#9337) (#9338)

This commit is contained in:
jluehe 2023-02-13 15:36:33 -08:00 committed by GitHub
parent 5f25f5b389
commit f43ca5d554
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -280,7 +280,7 @@ public class LowResourceMonitor extends ContainerLifeCycle
{
if (lowResourceCheck.isLowOnResources())
{
reasons = lowResourceCheck.toString();
reasons = lowResourceCheck.getReason();
break;
}
}