Update group limits error message

This commit is contained in:
Evan Hahn 2021-03-04 17:19:20 -06:00 committed by Josh Perez
parent 230604b451
commit dab5386207

View file

@ -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)) {