File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ module github.com/gofiber/fiber
33go 1.11
44
55require (
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
Original file line number Diff line number Diff line change 11github.com/andybalholm/brotli v1.0.0 h1:7UCwP93aiSfvWpapti8g88vVVGp2qqtGyePsSuDafo4 =
22github.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 =
55github.com/gorilla/schema v1.1.0 h1:CamqUDOFUBqzrvxuz2vEwo8+SUdwsluFh7IlzJh30LY =
66github.com/gorilla/schema v1.1.0 /go.mod h1:kgLaKoK1FELgZqMAVxx/5cbj0kT+57qxUrAlIO2eleU =
77github.com/klauspost/compress v1.10.4 h1:jFzIFaf586tquEB5EhzQG0HwGNSlgAJpG53G6Ss11wc =
Original file line number Diff line number Diff line change 2525
2626func 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
You can’t perform that action at this time.
0 commit comments