Update group limits error message
This commit is contained in:
parent
230604b451
commit
dab5386207
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ function makeGetter(configKey: ConfigKeyType): (fallback?: number) => number {
|
||||||
try {
|
try {
|
||||||
return parseIntOrThrow(
|
return parseIntOrThrow(
|
||||||
getValue(configKey),
|
getValue(configKey),
|
||||||
'Failed to parse group size limit'
|
`Failed to parse ${configKey} as an integer`
|
||||||
);
|
);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
if (isNumber(fallback)) {
|
if (isNumber(fallback)) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue