Skip to content

Commit

Permalink
Add error check for golangci-lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Tit Petric authored and titpetric committed Jan 3, 2025
1 parent a57f2bb commit 51cc31c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion gateway/testutil.go
Original file line number Diff line number Diff line change
Expand Up @@ -1161,7 +1161,9 @@ func (s *Test) newGateway(genConf func(globalConf *config.Config)) *Gateway {
gwConfig.BundleBaseURL = testHttpBundles
gwConfig.MiddlewarePath = testMiddlewarePath

config.FillEnv(&gwConfig)
if err := config.FillEnv(&gwConfig); err != nil {
log.WithError(err).Error("error filling test config from env")
}

// force ipv4 for now, to work around the docker bug affecting
// Go 1.8 and earlier
Expand Down

0 comments on commit 51cc31c

Please sign in to comment.