Skip to content

Commit bc070ad

Browse files
authored
Merge pull request #523 from Fenny/master
Bump utils v0.0.9
2 parents cc73477 + 518902d commit bc070ad

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/gofiber/fiber
33
go 1.11
44

55
require (
6-
github.com/gofiber/utils v0.0.8
6+
github.com/gofiber/utils v0.0.9
77
github.com/gorilla/schema v1.1.0
88
github.com/mattn/go-colorable v0.1.7
99
github.com/valyala/bytebufferpool v1.0.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github.com/andybalholm/brotli v1.0.0 h1:7UCwP93aiSfvWpapti8g88vVVGp2qqtGyePsSuDafo4=
22
github.com/andybalholm/brotli v1.0.0/go.mod h1:loMXtMfwqflxFJPmdbJO0a3KNoPuLBgiu3qAvBg8x/Y=
3-
github.com/gofiber/utils v0.0.8 h1:k6OSI31Gg06eT6jLVVZMzdMEK460Lh1JwMNkIA+YKVc=
4-
github.com/gofiber/utils v0.0.8/go.mod h1:0dwJg4h6ME5RdxgukBF46XCYUBLI6nX5PvD6P4DDFBU=
3+
github.com/gofiber/utils v0.0.9 h1:Bu4grjEB4zof1TtpmPCG6MeX5nGv8SaQfzaUgjkf3H8=
4+
github.com/gofiber/utils v0.0.9/go.mod h1:9J5aHFUIjq0XfknT4+hdSMG6/jzfaAgCu4HEbWDeBlo=
55
github.com/gorilla/schema v1.1.0 h1:CamqUDOFUBqzrvxuz2vEwo8+SUdwsluFh7IlzJh30LY=
66
github.com/gorilla/schema v1.1.0/go.mod h1:kgLaKoK1FELgZqMAVxx/5cbj0kT+57qxUrAlIO2eleU=
77
github.com/klauspost/compress v1.10.4 h1:jFzIFaf586tquEB5EhzQG0HwGNSlgAJpG53G6Ss11wc=

prefork.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ var (
2525

2626
func init() { //nolint:gochecknoinits
2727
// Avoid panic when the user adds their own flags and runs `flag.Parse()`
28-
flag.BoolVar(&isPrefork, flagChild[1:], false, "use prefork")
29-
flag.BoolVar(&isChild, flagPrefork[1:], false, "is child proc")
28+
flag.BoolVar(&isPrefork, flagPrefork[1:], false, "Prefork")
29+
flag.BoolVar(&isChild, flagChild[1:], false, "Child Process")
3030
}
3131

3232
// prefork manages child processes to make use of the OS REUSEPORT or REUSEADDR feature

0 commit comments

Comments
 (0)