Skip to content

Commit 4ff8832

Browse files
Remove pwrules generator skip rule after source has been fixed (#2302)
RELEASE_NOTES=n/a Signed-off-by: Dominik Schulz <[email protected]>
1 parent ee16cba commit 4ff8832

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,6 @@ github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
110110
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
111111
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
112112
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
113-
github.com/pquerna/otp v1.3.0 h1:oJV/SkzR33anKXwQU3Of42rL4wbrffP4uvUf1SvS5Xs=
114-
github.com/pquerna/otp v1.3.0/go.mod h1:dkJfzwRKNiegxyNb54X/3fLwhCynbMspSyWKnvi1AEg=
115113
github.com/pquerna/otp v1.3.1-0.20220803165443-c62dc589378a h1:aHBuXBWfSYHaZedMVtNBBX6bVfZtM+A89daAtZixiIg=
116114
github.com/pquerna/otp v1.3.1-0.20220803165443-c62dc589378a/go.mod h1:dkJfzwRKNiegxyNb54X/3fLwhCynbMspSyWKnvi1AEg=
117115
github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc=

pkg/pwgen/pwrules/gen.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ func fetchRules() (map[string]jsonRule, error) {
121121
}
122122

123123
var jr map[string]jsonRule
124-
if err := json.NewDecoder(&cleaningReader{src: src, ign: map[string]int{"launtel.net.au": 5}}).Decode(&jr); err != nil {
124+
if err := json.NewDecoder(&cleaningReader{src: src, ign: map[string]int{}}).Decode(&jr); err != nil {
125125
return nil, err
126126
}
127127
return jr, nil

pkg/pwgen/pwrules/pwrules_gen.go

Lines changed: 3 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)