codex - 💡(How to fix) Fix VS Code extension repeatedly fetches connector logos, causing "Server overloaded; retry later" errors [1 comments, 2 participants]

Official PRs (…)
ON THIS PAGE

Recommended Tools

×6

Utilities matched from this issue’s tags and category — try them while you read without losing context.

GitHub issue graph ai analysis

Paste a GitHub issue URL. We fetch that issue, discover linked issues from bodies/comments/timeline, collect linked pull requests, and produce a structured English report.

The report is written in English Markdown for sharing and archival.

Helpful · Quick feedback

Loading…
GitHub stats
openai/codex#19366Fetched 2026-04-25 06:10:41
View on GitHub
Comments
1
Participants
2
Timeline
6
Reactions
0
Author
Timeline (top)
labeled ×3commented ×1cross-referenced ×1subscribed ×1

Error Message

Example error: 2026-04-24 22:00:27.944 [error] Error fetching error={"code":-32001,"message":"Server overloaded; retry later."} url=/aip/connectors/asdk_app_69956675f2848191b08e0400f2695572/logo?theme=dark Request failed conversationId=none error={"code":-32001,"message":"Server overloaded; retry later."} method=skills/list Request failed conversationId=<redacted> error={"code":-32001,"message":"Server overloaded; retry later."} method=thread/read Request failed conversationId=<redacted> error={"code":-32001,"message":"Server overloaded; retry later."} method=thread/resume Error fetching error={"code":-32001,"message":"Server overloaded; retry later."} url=/aip/connectors/<connector-id>/logo?theme=dark Error fetching error={"code":-32001,"message":"Server overloaded; retry later."} url=/aip/connectors/<connector-id>/logo?theme=light

  • A logo fetch failure should not produce hundreds or thousands of repeated error lines. Error fetching httpStatus=403 statusText=Forbidden url=https://chatgpt.com/ces/v1/rgstr?<redacted>

Root Cause

Error fetching error={"code":-32001,"message":"Server overloaded; retry later."} url=/aip/connectors/<connector-id>/logo?theme=dark Error fetching error={"code":-32001,"message":"Server overloaded; retry later."} url=/aip/connectors/<connector-id>/logo?theme=light I do not have a small code snippet because this is an IDE extension / app-server behavior, not repository code.

RAW_BUFFERClick to expand / collapse

What version of the IDE extension are you using?

2.1.119

What subscription do you have?

Pro

Which IDE are you using?

VS Code

What platform is your computer?

Linux 6.8.0-107-generic x86_64 x86_64

What issue are you seeing?

The Codex VS Code extension repeatedly logs connector logo fetch failures.

Example error:

2026-04-24 22:00:27.944 [error] Error fetching error={"code":-32001,"message":"Server overloaded; retry later."} url=/aip/connectors/asdk_app_69956675f2848191b08e0400f2695572/logo?theme=dark

In one VS Code session, my Codex log contained around 1148 /aip/connectors/.../logo fetch errors.

I also saw nearby app-server errors:

Request failed conversationId=none error={"code":-32001,"message":"Server overloaded; retry later."} method=skills/list Request failed conversationId=<redacted> error={"code":-32001,"message":"Server overloaded; retry later."} method=thread/read Request failed conversationId=<redacted> error={"code":-32001,"message":"Server overloaded; retry later."} method=thread/resume

What steps can reproduce the bug?

  1. Open VS Code with the Codex extension installed.
  2. Sign in to Codex/ChatGPT.
  3. Open the Codex panel.
  4. Let the extension load apps/connectors.
  5. Check the Codex extension log.

On my machine, the log was here:

~/.config/Code/logs/20260424T215827/window1/exthost/openai.chatgpt/Codex.log The log repeatedly contained errors like:

text

Error fetching error={"code":-32001,"message":"Server overloaded; retry later."} url=/aip/connectors/<connector-id>/logo?theme=dark Error fetching error={"code":-32001,"message":"Server overloaded; retry later."} url=/aip/connectors/<connector-id>/logo?theme=light I do not have a small code snippet because this is an IDE extension / app-server behavior, not repository code.

What is the expected behavior?

The extension should not flood the log with repeated connector logo fetch failures.

Expected behavior:

  • Connector logos should be cached, throttled, or retried quietly.
  • A logo fetch failure should not produce hundreds or thousands of repeated error lines.
  • Logo fetch failures should not affect unrelated operations such as thread/read, thread/resume, or skills/list.
  • If the server is overloaded, the extension should back off instead of retrying many logo requests.

Additional information

I manually tested one of the same logo requests using the local Codex auth token, without printing the token.

Authenticated backend request:

GET https://chatgpt.com/backend-api/aip/connectors/asdk_app_69956675f2848191b08e0400f2695572/logo?theme=dark

Result:

status: 200 OK content-type: image/png content-length: 10205

So the logo itself was reachable through the authenticated backend API. The issue seems to be the extension/app-server retry behavior or request burst behavior.

Environment:

IDE extension version: 26.422.21459 IDE: VS Code Platform: Linux 6.8.0-107-generic x86_64 x86_64

I also saw separate telemetry errors like this, but I think they are unrelated:

Error fetching httpStatus=403 statusText=Forbidden url=https://chatgpt.com/ces/v1/rgstr?<redacted>

extent analysis

TL;DR

The Codex VS Code extension's repeated connector logo fetch failures can be mitigated by adjusting the extension's retry behavior or request throttling.

Guidance

  • Investigate the extension's configuration options to see if there are settings for retry limits or request throttling that can be adjusted to prevent excessive logo fetch attempts.
  • Consider implementing a cache for connector logos to reduce the number of requests made to the server.
  • Review the extension's error handling to ensure that logo fetch failures do not affect unrelated operations such as thread/read, thread/resume, or skills/list.
  • Verify that the extension is properly handling server overload errors and backing off instead of retrying requests excessively.

Example

No code snippet is provided as this issue is related to the IDE extension's behavior and not a specific code repository.

Notes

The issue seems to be related to the extension's retry behavior or request burst behavior, and adjusting these settings may help mitigate the problem. However, without access to the extension's code or configuration, it is difficult to provide a more specific solution.

Recommendation

Apply workaround: Adjust the extension's retry behavior or request throttling to prevent excessive logo fetch attempts, as the issue seems to be related to the extension's behavior rather than a server-side problem.

Vote matrix · Quick signals

Works
Did the solution work? Tap to confirm.
Easy Fix
Was it a quick fix?
Time Saver
Did it save you time?
Blocking
Was it severely blocking?
Common Issue
Are others likely hitting this too?
Flaky / Intermittent
Is it intermittent?
Verified / Reproducible
Can you reproduce it reliably?
Loading…

Still need to ship something?

×6

Another batch ranked right after the header list — different links, same matching logic.

Back to top recommendations

TRENDING

codex - 💡(How to fix) Fix VS Code extension repeatedly fetches connector logos, causing "Server overloaded; retry later" errors [1 comments, 2 participants]