更新过后在内网环境下运行出现AbortSignal.any is not a function(internal) #3520
Replies: 3 comments 4 replies
|
The reported Node 25.6.0 detail is important contradictory evidence: rc.7 declares Node The first useful probe is to join the shell-visible version to the executable used by the running DSH Host: where.exe node
node -p "JSON.stringify({execPath:process.execPath,version:process.version,any:typeof AbortSignal.any,timeout:typeof AbortSignal.timeout,execArgv:process.execArgv})"
Get-Command dsh | Format-List Source,Definition
"NODE_OPTIONS=$env:NODE_OPTIONS"
Get-CimInstance Win32_Process -Filter "Name = 'node.exe'" | Select-Object ProcessId,ParentProcessId,ExecutablePath,CommandLine | Format-ListWe published a source-backed offline Windows runbook that routes old PATH runtime, alternate DSH process image, preload/wrapper/global modification, and damaged runtime distribution separately. It also avoids disabling endpoint security or applying a cancellation polyfill: https://sandbaseai.github.io/deepseek-harness-handbook/abortsignal-any.html Canonical source: If you can share the sanitized |
|
补充一个从报错指纹就能收窄根因的观察,配合 denial123789 的运行时身份排查: 1. 这个报错必然发生,不是偶发路径
所以"每次对话发送都报错"不是某条可选路径坏了,而是只要运行时缺 2. 报错指纹把环境收窄到一个版本区间 注意报错只说
浏览器端不存在"有 timeout 无 any"的组合(Chromium any=97 早于 timeout=103;Firefox 反之是 any 先有)。"timeout 在、any 不在"这个指纹只匹配 Node 17.3.x ~ 20.2.x(含 18.0–18.16)。也就是说:无论 shell 里 3. 两个离线可跑的判别命令 在出问题的机器上,不做任何安装改动: # 确认启动 DSH 前的 Node 状态(正常应打印 true true v25.6.0)
node -e "console.log(typeof AbortSignal.timeout, typeof AbortSignal.any, process.version)"
# 绕过 UI 直接走纯 Node 热路径:如果这里也报错,就锁定在 Node 运行时层
dsh --headless "hi" --no-color 2>&1 | Select-Object -First 5
4. 安全软件排除法(呼应 denial123789 的 global-modification 路径):奇安信天擎/北信源在内网常做进程注入。若上面的命令显示 shell Node 完全正常、 |
|
基于 |



Uh oh!
There was an error while loading. Please reload this page.
具体表现为在对话界面输入内容后发送会弹出AbortSignal.any is not a function(internal)报错
尝试过卸载重装node.js环境,清理npm缓存,重装dsh,使用npx启动
运行后自动弹出页面(记得初版不会)
运行方式dsh web和npx @deepseek-ai/dsh web
环境:
内网隔离环境,除npm和pip外无法访问互联网资源
系统为Windows 11 22H2 和 Windows 10
安全软件奇安信天擎,策略分发北信源
使用 npm install -g @deepseek-ai/dsh安装
安装时间为2026/08/20 10:55
node 版本v25.6.0
npm 版本11.9.0
pnpm 版本11.22.0
dsh --version显示0.1.0-rc.7
All reactions