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