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 {
|
||||
return parseIntOrThrow(
|
||||
getValue(configKey),
|
||||
'Failed to parse group size limit'
|
||||
`Failed to parse ${configKey} as an integer`
|
||||
);
|
||||
} catch (err) {
|
||||
if (isNumber(fallback)) {
|
||||
|
|
Loading…
Reference in a new issue