Skip to content

Commit

Permalink
Bump utils v0.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Fenny committed Jun 30, 2020
1 parent 92d6da2 commit 518902d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion go.mod
Expand Up @@ -3,7 +3,7 @@ module github.com/gofiber/fiber
go 1.11

require (
github.com/gofiber/utils v0.0.8
github.com/gofiber/utils v0.0.9
github.com/gorilla/schema v1.1.0
github.com/mattn/go-colorable v0.1.7
github.com/valyala/bytebufferpool v1.0.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
@@ -1,7 +1,7 @@
github.com/andybalholm/brotli v1.0.0 h1:7UCwP93aiSfvWpapti8g88vVVGp2qqtGyePsSuDafo4=
github.com/andybalholm/brotli v1.0.0/go.mod h1:loMXtMfwqflxFJPmdbJO0a3KNoPuLBgiu3qAvBg8x/Y=
github.com/gofiber/utils v0.0.8 h1:k6OSI31Gg06eT6jLVVZMzdMEK460Lh1JwMNkIA+YKVc=
github.com/gofiber/utils v0.0.8/go.mod h1:0dwJg4h6ME5RdxgukBF46XCYUBLI6nX5PvD6P4DDFBU=
github.com/gofiber/utils v0.0.9 h1:Bu4grjEB4zof1TtpmPCG6MeX5nGv8SaQfzaUgjkf3H8=
github.com/gofiber/utils v0.0.9/go.mod h1:9J5aHFUIjq0XfknT4+hdSMG6/jzfaAgCu4HEbWDeBlo=
github.com/gorilla/schema v1.1.0 h1:CamqUDOFUBqzrvxuz2vEwo8+SUdwsluFh7IlzJh30LY=
github.com/gorilla/schema v1.1.0/go.mod h1:kgLaKoK1FELgZqMAVxx/5cbj0kT+57qxUrAlIO2eleU=
github.com/klauspost/compress v1.10.4 h1:jFzIFaf586tquEB5EhzQG0HwGNSlgAJpG53G6Ss11wc=
Expand Down
4 changes: 2 additions & 2 deletions prefork.go
Expand Up @@ -25,8 +25,8 @@ var (

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

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

0 comments on commit 518902d

Please sign in to comment.