Skip to content

Commit fcbe020

Browse files
committed
Fix RAM value
1 parent 5ed8258 commit fcbe020

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vmdetect/common.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ func CommonChecks() (bool, string) {
111111

112112
if err != nil {
113113
PrintError(err)
114-
} else if runtime.NumCPU() < 3 && vmStat.Total < 2048000 {
114+
} else if runtime.NumCPU() < 3 && vmStat.Total < 3072000000 {
115115
return true, fmt.Sprintf("Low resources detected (%v CPU and %v bytes of RAM", runtime.NumCPU(), vmStat.Total)
116116
}
117117

0 commit comments

Comments
 (0)