diff --git a/Processor/Processor.go b/Processor/Processor.go index f7af0749..d8dd07cb 100644 --- a/Processor/Processor.go +++ b/Processor/Processor.go @@ -522,6 +522,7 @@ func parseOrDefault(s string, defaultValue string) (int64, error) { if err == nil && value != 0 { return value, nil } + return strconv.ParseInt(defaultValue, 10, 64) }