We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
string does not match ~[]E
1 parent 1913930 commit 4aa4f3aCopy full SHA for 4aa4f3a
caddyconfig/httpcaddyfile/httptype.go
@@ -355,7 +355,7 @@ func (st ServerType) Setup(
355
defaultLog.Exclude = append(defaultLog.Exclude, ncl.log.Include...)
356
357
// avoid duplicates by sorting + compacting
358
- slices.Sort[string](defaultLog.Exclude)
+ sort.Strings(defaultLog.Exclude)
359
defaultLog.Exclude = slices.Compact[[]string, string](defaultLog.Exclude)
360
}
361
0 commit comments