Make the abnormal runtime threshold configurable.

This commit is contained in:
Jeffrey C. Ollie
2023-12-30 22:52:47 -06:00
parent 792284fb69
commit 4ef8d099a7
3 changed files with 22 additions and 2 deletions

View File

@@ -230,6 +230,12 @@ fn parseIntoField(
0,
) catch return error.InvalidValue,
u64 => std.fmt.parseInt(
u64,
value orelse return error.ValueRequired,
0,
) catch return error.InvalidValue,
f64 => std.fmt.parseFloat(
f64,
value orelse return error.ValueRequired,