Skip to content

Commit 1e71785

Browse files
authored
Fix max limit in normalizeFiltersValidators (#4494)
1 parent f562418 commit 1e71785

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/playground/src/utils/nodeSelector.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ function normalizeFiltersValidators(
455455
cpu: normalizeNumericValidator(validators.cpu, {
456456
type: "int",
457457
min: 1,
458-
max: 32,
458+
max: Number.MAX_SAFE_INTEGER,
459459
}),
460460
memory: normalizeNumericValidator(validators.memory, {
461461
type: "int",

0 commit comments

Comments
 (0)