MSDNS: Provider is failing due to lint fix gone wrong (#3396)

This commit is contained in:
Tom Limoncelli 2025-01-21 14:29:53 -05:00 committed by GitHub
parent 5e15bbe676
commit 70e9659014
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -60,7 +60,7 @@ func (s *shell) Execute(cmd string) (string, string, error) {
waiter.Add(2) waiter.Add(2)
go streamReader(s.stdout, outBoundary, &sout, waiter) //nolint:errcheck go streamReader(s.stdout, outBoundary, &sout, waiter) //nolint:errcheck
go streamReader(s.stdout, outBoundary, &sout, waiter) //nolint:errcheck go streamReader(s.stderr, errBoundary, &serr, waiter) //nolint:errcheck
waiter.Wait() waiter.Wait()