20260227 130611#175
Conversation
mpragosa-te
commented
Feb 27, 2026
- feature: wipes existing code in preparation for new version
- feat: Fixes the client content type matching regex
- [GitHub Bot] Generated go SDK ([GitHub Bot] Generated go SDK #125)
- fix: fixes content-type regex matcher (fix: fixes content-type regex matcher #126)
- [GitHub Bot] Generated go SDK ([GitHub Bot] Generated go SDK #128)
- feature: Support new release workflow and set User-Agent header with SDK version (feature: Support new release workflow and set User-Agent header with SDK version #131)
- [GitHub Bot] Generated go SDK ([GitHub Bot] Generated go SDK #133)
- [GitHub Bot] Generated go SDK ([GitHub Bot] Generated go SDK #134)
- [GitHub Bot] Generated go SDK ([GitHub Bot] Generated go SDK #135)
- [GitHub Bot] Generated go SDK ([GitHub Bot] Generated go SDK #137)
- feat: Print the response log when the api call failed (feat: Print the response log when the api call failed #139)
- [GitHub Bot] Generated go SDK ([GitHub Bot] Generated go SDK #142)
- [GitHub Bot] Generated go SDK ([GitHub Bot] Generated go SDK #143)
- [GitHub Bot] Generated go SDK ([GitHub Bot] Generated go SDK #144)
- [GitHub Bot] Generated go SDK ([GitHub Bot] Generated go SDK #146)
- [GitHub Bot] Generated go SDK ([GitHub Bot] Generated go SDK #147)
- [GitHub Bot] Generated go SDK ([GitHub Bot] Generated go SDK #149)
- [GitHub Bot] Generated go SDK ([GitHub Bot] Generated go SDK #150)
- feat: Use retry http and add backoff (feat: Use retry http and add backoff #151)
- [GitHub Bot] Generated go SDK (20251017 115623 #153)
- [GitHub Bot] Generated go SDK ([GitHub Bot] Generated go SDK #158)
- [GitHub Bot] Generated go SDK (20260209 123709 #173)
- Update CODEOWNERS
- [GitHub Bot] Generated go SDK
feat: renames core module to client feature: moves some functions to an internal module feat: small comment changes feature - fixes default server url feature - updates go sdk version on user agent feature - includes core module prior to v7 upgrade
* feature - includes core module prior to v7 upgrade * feature - updates go sdk version on user agent * feature - fixes default server url * feat: small comment changes * feature: moves some functions to an internal module * feat: renames core module to client * [GitHub Bot] Generated go SDK --------- Co-authored-by: Phellippe Lima <phpinhei@thousandeyes.com> Co-authored-by: API Team <api-team@thousandeyes.com>
Co-authored-by: API Team <api-team@thousandeyes.com>
Co-authored-by: API Team <api-team@thousandeyes.com>
Co-authored-by: API Team <api-team@thousandeyes.com>
Co-authored-by: API Team <api-team@thousandeyes.com>
Co-authored-by: API Team <api-team@thousandeyes.com>
* update the client log * receive the responseBody and stateCode from the agent to format error message
Co-authored-by: API Team <api-team@thousandeyes.com>
Co-authored-by: API Team <api-team@thousandeyes.com>
Co-authored-by: API Team <api-team@thousandeyes.com>
Co-authored-by: API Team <api-team@thousandeyes.com>
Co-authored-by: API Team <api-team@thousandeyes.com>
Co-authored-by: API Team <api-team@thousandeyes.com>
Co-authored-by: API Team <api-team@thousandeyes.com>
Co-authored-by: API Team <api-team@thousandeyes.com>
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: ba2a17b742
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| resp, err := c.cfg.HTTPClient.Do(request) | ||
|
|
||
| if c.cfg.Debug { | ||
| dump, err := httputil.DumpResponse(resp, true) |
There was a problem hiding this comment.
Guard debug response dump on transport errors
When HTTPClient.Do fails it can return resp == nil, but this method still calls httputil.DumpResponse(resp, true) whenever debug mode is enabled. DumpResponse(nil, ...) panics, so a normal network failure (DNS/TLS/connect timeout) becomes a process crash only because Debug is true; add an err != nil || resp == nil guard before dumping the response.
Useful? React with 👍 / 👎.