cmd/cloudflared/updater: fix dropped error (#1055)

This commit is contained in:
Lars Lehtonen 2023-12-14 08:31:47 -08:00 committed by GitHub
parent f2c4fdb0ae
commit fd5d8260bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -56,6 +56,9 @@ func (s *WorkersService) Check() (CheckResult, error) {
}
req, err := http.NewRequest(http.MethodGet, s.url, nil)
if err != nil {
return nil, err
}
q := req.URL.Query()
q.Add(OSKeyName, runtime.GOOS)
q.Add(ArchitectureKeyName, runtime.GOARCH)