New Codex release very untable and high cpu usage on mac, crashes constantly! Please revert
Open 💬 8 comments Opened Aug 14, 2026 by danwalmsley
💡 Likely answer: A maintainer (github-actions[bot], contributor)
responded on this thread — see the highlighted reply below.
What version of the Codex App are you using (From “About Codex” dialog)?
26.810.41047
What subscription do you have?
Pro 20x
What platform is your computer?
macos arm64
What issue are you seeing?
after only a few minutes it crashes, almost impossible to open a long chat, and whole pc locks for a few seconds.
What steps can reproduce the bug?
unknown, it was introduced today with the update.
What is the expected behavior?
_No response_
Additional information
_No response_
8 Comments
Potential duplicates detected. Please review them and close your issue if it is a duplicate.
Powered by Codex Action
Sanitized native diagnostics: reproducible Computer Use worker/thread and app-server storm
I inspected the macOS
.ipscrash reports and Codex desktop logs. Local usernames, home paths, project/repository names, emails, account identifiers, conversation/thread IDs, session UUIDs, PIDs, crash incident IDs, and tokens have been intentionally omitted.Executive summary
This is reproducible while no Computer Use task is being invoked. There are now 7 native crashes on app version 26.810.41047 (build 6570). The app survives only 82–147 seconds after launch.
The newest and most useful reproduction occurred after Computer Use was disabled in the UI. The persisted configuration confirmed both:
Despite both settings being false, that launch still produced:
computer-useDispatch Thread Soft Limit: 64[IpcRouter] I am the routermessagesEXC_CRASH / SIGABRTon a thread namedcomputer-usenode::OOMErrorHandler(...)in the faulting stackThis demonstrates that disabling Computer Use through the UI does not stop the bundled component involved in this failure.
Environment
26.810.41047(6570)151.0.7922.13726.4.1(25E253)The app bundle was replaced by the updater earlier that day. A process that had remained open from before the update continued logging normally for approximately 19 hours. After it exited and the updated binary was launched, every observed launch entered the crash loop.
Reproduction matrix
| Run | Lifetime | Total threads |
computer-usethreads | Router messages | Log files | Termination | Faulting thread ||---:|---:|---:|---:|---:|---:|---|---|
| 1 | 104.6 s | 325 | 185 | 432 | 217 |
EXC_CRASH / SIGABRT+ V8 OOM |V8Worker|| 2 | 99.0 s | 323 | 185 | 436 | 219 |
EXC_CRASH / SIGABRT+ V8 OOM |V8Worker|| 3 | 100.7 s | 327 | 187 | 435 | 218 |
EXC_CRASH / SIGABRT+ V8 OOM |computer-use|| 4 | 146.7 s | 320 | 185 | 467 | 228 |
EXC_CRASH / SIGABRT+ V8 OOM |V8Worker|| 5 | 86.3 s | 328 | 186 | 435 | 218 |
EXC_BREAKPOINT / SIGTRAP|computer-use|| 6 | 82.4 s | 325 | 185 | 435 | 217 |
EXC_CRASH / SIGABRT+ V8 OOM |computer-use|| 7, Computer Use disabled | 96.6 s | 324 | 186 | 442 | 222 |
EXC_CRASH / SIGABRT+ V8 OOM |computer-use|Every crash report records the dispatch soft limit as 64. In each report, roughly 149–155
computer-usethreads share the same blocked stack shape.Fault signatures
The reliable portion of the V8 OOM stack is:
The dominant blocked
computer-usestack is:The process has the bundled native
sky.nodeand objc/N-API bridge modules loaded. This is a self-initiated Node/V8 abort, not a macOS jetsam or memory-pressure kill.IPC/log-file storm
The router storm begins almost immediately after each launch and continues until the crash. Depending on the run, the main log records approximately 3.3–5.4 router elections per second.
Each launch also creates 217–228 numbered log files in less than 2.5 minutes. Almost all are zero bytes. The last disabled-Computer-Use run created 222 files in 96.6 seconds. This is consistent with short-lived app-server/worker clients repeatedly starting and re-registering.
After the main app exits, multiple
browser_crashpad_handlerand hotkey-monitor helper processes can remain behind from prior launches.Bundled versus installed plugin app-server mismatch
The plugin app-server copy under
$CODEX_HOME/plugins/.plugin-appserver/was not refreshed with the app update and is substantially older than the binaries in the updated application bundle:| Binary | Copy | Size | Modification time (UTC) | SHA-256 prefix |
|---|---|---:|---|---|
|
codex| App bundle | 219,666,000 | 2026-08-14 16:49:57 |7a26b07855ef9119||
codex| Installed plugin app-server | 260,354,320 | 2026-07-11 10:53:08 |e48ce8a0455b97ba||
codex-code-mode-host| App bundle | 51,495,456 | 2026-08-14 16:49:57 |206000a48fbe9d2f||
codex-code-mode-host| Installed plugin app-server | 46,376,032 | 2026-07-11 10:53:07 |3b7a1a7b4652d7e3|Both pairs differ by size and hash. This strongly supports the stale plugin app-server/file-equivalence respawn-loop hypothesis described in #38589, although it does not by itself prove which caller initiates each retry.
Secondary configuration warning
$CODEX_HOMEis reached through a symlink to another local volume. The bundled marketplace is stored once using the symlink form and then presented to the app using the canonical form. Logs repeatedly report:This warning existed during the long stable pre-update process as well, so it is likely secondary rather than the direct crash trigger. It may still be worth normalizing paths during marketplace reconciliation.
Relationship to suggested duplicates
These diagnostics appear to connect three previously reported symptoms of the same
26.810.41047regression:node::OOMErrorHandler, including when Computer Use is disabled.AESendMessage, followed by the dispatch-thread limit and V8 abort.The newest reproduction confirms all three signatures on one machine, and confirms that disabling Computer Use in the current UI is not an effective workaround.
Expected behavior / requested safeguards
I can provide a separately sanitized full
.ipsreport if maintainers need one, but have not uploaded the raw report because it contains local filesystem and process metadata.Additional correlation: #38468 contains a detailed report of the same build and appears highly relevant to this crash signature.
That report measured:
SkyComputerUseServicechild processes during two launchessocket lock is unavailable errno=35com.openai.sky.CUAServiceDispatch Thread Soft Limit: 64A particularly relevant common factor is that both environments locate
$CODEX_HOMEthrough an external-volume path. In this environment it is accessed through a home-directory symlink, producing two textual forms for the same bundled-marketplace location. The newest reproduction still created 186computer-usethreads after Computer Use was disabled in the UI and persisted asenabled = false.Taken together, #38468 and the native diagnostics above strengthen this working hypothesis:
This also explains why the visible symptoms can vary between high CPU/RAM and system input freezes (#38468), a
spawnSync/IPC storm (#38589), and a native V8 OOM with roughly 186 blocked Computer Use threads (this issue, #38455, and #38515).The detailed sanitized evidence on #38468 is here: https://github.com/openai/codex/issues/38468#issuecomment-5288831133
Correction after reviewing the follow-up investigation on #38455:
The stale, hash-mismatched
$CODEX_HOME/plugins/.plugin-appserver/binaries remain a factual observation, but they should not be treated as the likely caller or root cause of this crash loop. A latersampleanalysis in #38455 resolves a stronger caller path:That analysis also found repeated native menu-state failures such as:
This fits the direct evidence here much better: approximately 186
computer-useworkers, 149–155 blocked throughAESendMessage, hundreds of router elections/log files, and the fault persisting after the visible Computer Use plugin and MCP entry were disabled.Therefore the primary suspected area should be the bundled Computer Use lifecycle/menu-state retry path. The stale plugin app-server mismatch and marketplace path warning should be considered secondary observations unless maintainers find a separate connection.
The comments on #38455 also show that configuration workarounds are inconsistent:
[features] computer_use = falsestabilized one environment, while another confirmed the feature false before launch but the desktop app restored the Computer Use notification hook during startup and reproduced the same ~98-second OOM. In the reproduction attached to this issue, the UI/plugin toggle and MCP entry were both false, but the Computer Use notification hook/path remained configured and the crash still occurred.I am experiencing what appears to be the same issue on macOS, but on Codex App 26.810.50856. The built-in updater confirms this is currently the newest version available to me.
In my case, a long-running conversation began showing “Context automatically compacted” repeatedly, after which Codex became extremely slow and began crashing with “ChatGPT stopped unexpectedly.”
I tested this further:
Restarting the app works, although startup is very slow.
Leaving Codex idle on the home screen remains stable.
Loading/working with the existing long conversation results in instability/crashing.
After restarting again and leaving the existing conversation unopened, simply clicking New chat also caused Codex to crash.
No code was running when that crash occurred.
I have restarted multiple times and confirmed that 26.810.50856 is fully up to date. The issue therefore appears to persist in a newer build than the 26.810.41047 version reported here.
Update: A newer Codex App build became available this morning. I updated from 26.810.50856 to 26.810.52044, but the issue is still occurring.
After installing the update, Codex again crashed with “ChatGPT stopped unexpectedly.” The built-in updater confirms that 26.810.52044 is currently the newest version available.
So, for me, the crash has now been reproduced on both:
26.810.50856
26.810.52044
I have a screenshot showing the crash alongside the “You’re up to date” confirmation for 26.810.52044.
still an issue, constantly crashes after a few minutes @tibo-openai
Confirmed root cause trigger and working mitigation (2026-08-23)
I reproduced the exact failure signature from #38455 on this machine, then isolated a working filesystem-topology fix.
Exact match to #38455
On ChatGPT Desktop
26.818.41509(build6962), multiple launches failed after roughly 96–100 seconds, including while idle:computer-useEXC_CRASH / SIGABRTnode::OOMErrorHandler(...)A live hang sample also reported the dispatch-thread soft limit reached in every sample, with about 202 threads and ~2.1 GiB RSS.
Reinstall and config toggles did not fix it
I backed up and reset the desktop app state, removed generated Computer Use/plugin runtime state, and installed the current official OpenAI-notarized DMG:
26.818.41705(build6971). The locally downloaded DMG and the official documentation download were byte-for-byte identical (same SHA-256).With the top-level Codex-home symlink still present, the clean build reproduced the storm. Removing/locking the
SkyComputerUseClientnotifier did not prevent it either: the guarded run reached 169 threads and ~1.54 GiB RSS in 41 seconds before I terminated it. This confirms that the notifier and visible plugin settings are symptoms/entry points, not a reliable kill switch.Trigger on this machine: top-level
~/.codexsymlinkThe affected layout was:
I changed only the Codex-home topology for the next clean run:
~/.codexdirectory.6971.Result:
This strongly supports the lexical-versus-canonical Codex-home path mismatch identified in the later #38455 comments. The app appears unable to recognize/reuse the Computer Use service when the Codex-home root is reached through a symlink, then amplifies the handshake/path mismatch into an unbounded worker/bootstrap retry loop.
Keeping worktrees on the external disk without symlinking Codex home
A physical
~/.codexdoes not require storing managed worktrees on the system disk. I configured the supported worktree root separately:This is the same setting exposed under Settings → Worktrees → Worktree root. The Codex home remains a real local directory, while generated worktrees stay on the large external SSD.
Product fix still needed
The physical-directory workaround restores usability here, but a top-level
~/.codex/CODEX_HOMEsymlink is valid developer filesystem usage and previously worked. The desktop app should canonicalize and consistently compare these paths. Independently, the Computer Use bootstrap lifecycle needs single-flight behavior, bounded retries/backoff, timeouts, and a circuit breaker so any path or AppleEvent failure cannot create hundreds of workers/children or hang the desktop.