allow compaction config slots to drop to 0 (#15877)

This commit is contained in:
Vadim Ogievetsky 2024-02-14 23:27:15 -08:00 committed by GitHub
parent 495e66f2e7
commit 66f54f2066
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ const COMPACTION_DYNAMIC_CONFIG_FIELDS: Field<CompactionDynamicConfig>[] = [
type: 'number', type: 'number',
defaultValue: DEFAULT_MAX, defaultValue: DEFAULT_MAX,
info: <>The maximum number of task slots for compaction tasks</>, info: <>The maximum number of task slots for compaction tasks</>,
min: 1, min: 0,
}, },
]; ];