Skip to content

Commit

Permalink
Go back to using just fronting for issue reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
myleshorton committed Dec 9, 2024
1 parent 02980c8 commit 245b7ea
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion issue/issue.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ func sendReport(
osVersion string,
attachments []*Attachment,
) error {
httpClient := proxied.DirectThenFrontedClient(30 * time.Second)
httpClient := &http.Client{
Transport: proxied.Fronted("issue_fronted_roundtrip"),
}
r := &Request{}

r.Type = Request_ISSUE_TYPE(issueType)
Expand Down

0 comments on commit 245b7ea

Please sign in to comment.