Skip to content

Commit

Permalink
e2e testing: support golang 1.18
Browse files Browse the repository at this point in the history
  • Loading branch information
dmachard committed Mar 17, 2022
1 parent 55a4a29 commit 7b2230d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:

strategy:
matrix:
go-version: [ '1.17']
go-version: [ '1.17', '1.18' ]
coredns: [ '1.15.0' ]
mode: [ 'tcp' ]

Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:

strategy:
matrix:
go-version: ['1.17']
go-version: [ '1.17', '1.18' ]
dnsdist: [ '16', '17' ]
mode: [ 'dnstaptcp', 'dnstapunix', 'powerdns']

Expand Down
2 changes: 1 addition & 1 deletion dnsutils/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ type Config struct {
KeepQueryIpFile string `yaml:"keep-queryip-file"`
DropRcodes []string `yaml:"drop-rcodes,flow"`
LogQueries bool `yaml:"log-queries"`
LogReplies bool `yaml:"log-replies"!`
LogReplies bool `yaml:"log-replies"`
} `yaml:"filtering"`
GeoIP struct {
DbCountryFile string `yaml:"mmdb-country-file"`
Expand Down

0 comments on commit 7b2230d

Please sign in to comment.