Skip to content

Commit 8931f25

Browse files
committed
Ahh
1 parent 94f60fb commit 8931f25

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

cmd/serve.go

-11
Original file line numberDiff line numberDiff line change
@@ -432,17 +432,6 @@ func execServe(c *cli.Context) error {
432432
return nil
433433
}
434434

435-
func parseSize(s string, defaultValue int64) (v int64, err error) {
436-
if s == "" {
437-
return defaultValue, nil
438-
}
439-
v, err = util.ParseSize(s)
440-
if err != nil {
441-
return 0, err
442-
}
443-
return v, nil
444-
}
445-
446435
func sigHandlerConfigReload(config string) {
447436
sigs := make(chan os.Signal, 1)
448437
signal.Notify(sigs, syscall.SIGHUP)

0 commit comments

Comments
 (0)