@coclaw/openclaw-coclaw 0.26.6 → 0.27.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -172,14 +172,11 @@ openclaw gateway call coclaw.upgradeHealth --json
172
172
 
173
173
  ## WebRTC 实现
174
174
 
175
- 插件在运行时按优先级选择 WebRTC 实现:
175
+ WebRTC 唯一实现为 **pion**——通过 `@coclaw/pion-node` SDK 驱动 Go 侧 pion-ipc 进程,实现完整 WebRTC 能力。pion 加载失败时不再兜底(`impl=none`):所有依赖 WebRTC DataChannel 的远程功能(chat、UI RPC、文件传输)不可用;gateway 进程、本地 RPC 面与自动升级不受影响,可通过发布修复版本自动升级恢复。
176
176
 
177
- 1. **pion**(主力)— 通过 `@coclaw/pion-node` SDK 驱动 Go 侧 pion-ipc 进程,实现完整 WebRTC 能力。
178
- 2. **werift**(回退)— 纯 JavaScript 实现,作为 pion 加载失败时的兜底。
177
+ 加载结果通过 `coclaw.env impl=...` 日志上报。
179
178
 
180
- 选择结果通过 `bridge.started` / `coclaw.env impl=...` 日志上报。
181
-
182
- > `ndc-preloader.js`(node-datachannel 路径)的代码仍保留但已摘除 `node-datachannel` 依赖和 vendor 预编译包(2026-04-19)——运行时必然走 fallback 到 werift,待 pion 在全部线上平台稳定观察期结束后与 werift 一并移除。
179
+ > 历史:werift(纯 JS 兜底)与 ndc(node-datachannel)路径已于 2026-07-16 移除。werift 的 DataChannel 不触发 `onbufferedamountlow` 属性回调,而插件的 RPC 背压与文件下载恢复都挂在该回调上——werift 路径实为"能连上但文件/大流量必楔死"的负价值兜底。背景见 `docs/webrtc-impl-strategy.md`。
183
180
 
184
181
  ## 运行与排障日志
185
182
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coclaw/openclaw-coclaw",
3
- "version": "0.26.6",
3
+ "version": "0.27.0",
4
4
  "type": "module",
5
5
  "license": "Apache-2.0",
6
6
  "description": "OpenClaw plugin for remote chat over WebRTC. Run `openclaw coclaw enroll` after install.",
@@ -68,7 +68,6 @@
68
68
  },
69
69
  "dependencies": {
70
70
  "@coclaw/pion-node": "^0.4.0",
71
- "werift": "^0.19.0",
72
71
  "ws": "^8.19.0"
73
72
  },
74
73
  "peerDependencies": {
@@ -318,7 +318,7 @@ export function createFileHandler({ resolveWorkspace, logger, deps = {} }) {
318
318
 
319
319
  /**
320
320
  * 处理 file:<transferId> DataChannel
321
- * @param {object} dc - werift DataChannel
321
+ * @param {object} dc - DataChannel
322
322
  * @param {string} [connId] - 所属 PeerConnection 的连接 ID
323
323
  */
324
324
  function handleFileChannel(dc, connId) {
@@ -151,7 +151,6 @@ export class RealtimeBridge {
151
151
  this.__resolveGatewayAuthToken = deps.resolveGatewayAuthToken ?? defaultResolveGatewayAuthToken;
152
152
  this.__loadDeviceIdentity = deps.loadDeviceIdentity ?? loadOrCreateDeviceIdentity;
153
153
  this.__preloadPion = deps.preloadPion ?? null;
154
- this.__preloadNdc = deps.preloadNdc ?? null;
155
154
  this.__WebSocket = deps.WebSocket; // undefined=使用 ws 包, null=禁用(测试用), 其他=自定义实现
156
155
  this.__gatewayReadyTimeoutMs = deps.gatewayReadyTimeoutMs ?? 1500;
157
156
  this.__dcReqTtlMs = deps.dcReqTtlMs ?? DC_REQ_TTL_MS;
@@ -1403,7 +1402,7 @@ export class RealtimeBridge {
1403
1402
  // 信令消息,与 drain 内的同名日志做区分主要看 msg 文本。
1404
1403
  const sigType = payload?.type ?? 'unknown';
1405
1404
  const sigConn = payload?.fromConnId ?? payload?.toConnId ?? 'unknown';
1406
- this.logger.warn?.(`[coclaw/rtc] signaling error (or werift not found) type=${sigType} conn=${sigConn}: ${err?.message}`);
1405
+ this.logger.warn?.(`[coclaw/rtc] signaling error type=${sigType} conn=${sigConn}: ${err?.message}`);
1407
1406
  remoteLog(`rtc.signaling-error type=${sigType} conn=${sigConn} msg=${err?.message}`);
1408
1407
  }
1409
1408
  return;
@@ -1443,7 +1442,7 @@ export class RealtimeBridge {
1443
1442
  this.__webrtcPeerReady = null;
1444
1443
  if (this.webrtcPeer) {
1445
1444
  try { await this.webrtcPeer.closeAll(); }
1446
- /* c8 ignore next 3 -- 防御性兜底,werift close 异常时不可崩溃 gateway */
1445
+ /* c8 ignore next 3 -- 防御性兜底,closeAll 异常时不可崩溃 gateway */
1447
1446
  catch (e) { this.logger.warn?.(`[coclaw/rtc] closeAll failed: ${e?.message}`); }
1448
1447
  this.webrtcPeer = null;
1449
1448
  }
@@ -1497,7 +1496,11 @@ export class RealtimeBridge {
1497
1496
  .then((v) => { this.__pluginVersion = v; })
1498
1497
  .catch(() => { this.__pluginVersion = 'unknown'; });
1499
1498
 
1500
- // 1. 尝试 pion(最高优先级)
1499
+ // 唯一实现 pion,失败不再回退(werift 兜底已剔除:其 DataChannel 无
1500
+ // onbufferedamountlow 回调,插件的背压/文件下载恢复挂在该回调上,werift
1501
+ // 路径实为"连上但核心功能楔死"的负价值兜底)。impl='none' 时所有走 DC 的
1502
+ // 远程功能(chat / UI RPC / 文件)不可用;gateway 进程、本地 RPC 面与
1503
+ // 自动升级链路不受影响,可发布修复版把机器捞回。
1501
1504
  const preloadPionFn = this.__preloadPion
1502
1505
  ?? (await import('./webrtc/pion-preloader.js')).preloadPion;
1503
1506
  const pionResult = await preloadPionFn({ logger: this.logger }).catch((err) => {
@@ -1509,17 +1512,10 @@ export class RealtimeBridge {
1509
1512
  return pionResult;
1510
1513
  }
1511
1514
 
1512
- // 2. 回退到 ndc/werift
1513
- const preloadNdcFn = this.__preloadNdc
1514
- ?? (await import('./webrtc/ndc-preloader.js')).preloadNdc;
1515
- const [ndcResult] = await Promise.all([
1516
- preloadNdcFn().catch((err) => {
1517
- this.logger.warn?.(`[coclaw] ndc preload unexpected failure: ${err?.message}`);
1518
- return { PeerConnection: null, cleanup: null, impl: 'none' };
1519
- }),
1520
- versionPromise,
1521
- ]);
1522
- return ndcResult;
1515
+ // none 结果保持非空对象契约(start/stop 竞态守卫直接读 .impl / .cleanup);
1516
+ // 返回前须等版本预热完成,保证 __buildEnvLine 的 plugin= 字段就绪
1517
+ await versionPromise;
1518
+ return { PeerConnection: null, cleanup: null, impl: 'none' };
1523
1519
  }
1524
1520
  /* c8 ignore stop */
1525
1521
 
@@ -1571,7 +1567,7 @@ export class RealtimeBridge {
1571
1567
  // preload 后还有一道 started 检查兜底(含 pion cleanup),这里先挡住一次无意义的 preload。
1572
1568
  if (!this.started) return;
1573
1569
  // 先完成 WebRTC 实现加载,再建立连接,避免 UI 发来 offer 时 RTC 包未就绪
1574
- // 优先级:pion → ndc → werift → none
1570
+ // 唯一实现 pion,失败即 none(无兜底)
1575
1571
  const preloadResult = await this.__preloadWebrtc();
1576
1572
  // 竞态保护:若 preload 期间 stop() 已执行,不再赋值,直接返回。
1577
1573
  if (!this.started) {
@@ -1583,10 +1579,9 @@ export class RealtimeBridge {
1583
1579
  }
1584
1580
  this.__ndcPreloadResult = preloadResult;
1585
1581
  this.__ndcCleanup = preloadResult.cleanup;
1586
- const implLabel = preloadResult.impl === 'ndc' ? 'node-datachannel(ndc)' : preloadResult.impl;
1587
- this.__implLabel = implLabel; // 缓存供 ws.open 时发送
1582
+ this.__implLabel = preloadResult.impl; // 缓存供 ws.open 时发送
1588
1583
  // 启动信息只本地 log;远程发送统一由 ws.open 触发,避免重复
1589
- this.logger.info?.(`[coclaw] WebRTC impl: ${implLabel}`);
1584
+ this.logger.info?.(`[coclaw] WebRTC impl: ${this.__implLabel}`);
1590
1585
  this.logger.info?.(`[coclaw] ${this.__buildEnvLine()}`);
1591
1586
  remoteLog('bridge.started');
1592
1587
  // 启动 UI 转发 RPC 路由表周期扫描:1h 间隔扫描 24h 过期条目,避免长程 RPC 残留。
@@ -1699,8 +1694,7 @@ export class RealtimeBridge {
1699
1694
  await this.webrtcPeer.closeAll().catch(() => {});
1700
1695
  this.webrtcPeer = null;
1701
1696
  }
1702
- // pion: 关闭 Go 进程(异步,快速)
1703
- // ndc: 不调用 cleanup()——同步 join native threads 耗时 10s+,进程退出时 OS 回收
1697
+ // pion: 关闭 Go 进程(异步,快速);none: cleanup 为 null,无事可做
1704
1698
  const impl = this.__ndcPreloadResult?.impl;
1705
1699
  if (impl === 'pion' && this.__ndcCleanup) {
1706
1700
  await this.__ndcCleanup().catch(() => {});
@@ -1768,20 +1762,19 @@ export async function restartRealtimeBridge(opts) {
1768
1762
 
1769
1763
  /**
1770
1764
  * @param {object} [opts]
1771
- * @param {boolean} [opts.forceCleanup] - 调用 ndc cleanup() 释放 native TSFN(仅测试用)。
1772
- * 生产环境不调用:cleanup() join native threads(无活跃 PC 时通常 sub-second,
1773
- * worst-case 阻塞 10s),且 gateway 通过 process.exit() 退出无需依赖事件循环排空。
1765
+ * @param {boolean} [opts.forceCleanup] - ndc 时代释放 native TSFN 的历史参数(仅测试用)。
1766
+ * 现存实现(pion/none)下恒为 no-op:pion cleanup 已在 stop() 内处理(fast async),
1767
+ * none cleanup。保留签名兼容既有测试调用方。
1774
1768
  */
1775
1769
  export async function stopRealtimeBridge({ forceCleanup = false } = {}) {
1776
1770
  if (!singleton) {
1777
1771
  return;
1778
1772
  }
1779
- // pion 的 cleanup 已在 stop() 内处理(fast async),此处 forceCleanup 仅用于 ndc
1780
1773
  const impl = singleton.__ndcPreloadResult?.impl;
1781
1774
  const cleanupFn = (forceCleanup && impl !== 'pion') ? singleton.__ndcCleanup : null;
1782
1775
  await singleton.stop();
1783
1776
  singleton = null; // 置 null 后须通过 restartRealtimeBridge 重建
1784
- /* c8 ignore next 3 -- forceCleanup ndc 测试清理 TSFN,pion binary 存在时走 pion 路径不触发 */
1777
+ /* c8 ignore next 3 -- 历史 ndc 分支:现存实现下 cleanupFn null,不可触发 */
1785
1778
  if (typeof cleanupFn === 'function') {
1786
1779
  try { cleanupFn(); } catch { /* cleanup 失败不影响 stop 结果 */ }
1787
1780
  }
@@ -9,7 +9,7 @@ const SEVERE_LOG_PATTERN = /request timeout|orphan response/;
9
9
  * 预加载 Pion WebRTC 实现:启动 pion-ipc Go 进程,返回绑定了 ipc 的 PeerConnection。
10
10
  *
11
11
  * **此函数永不 throw**——所有异常内部捕获,通过 remoteLog 报告。
12
- * 失败时返回 null(调用方降级到 ndc/werift)。
12
+ * 失败时返回 null(调用方按 impl='none' 处理,无兜底实现)。
13
13
  *
14
14
  * binary 解析由 @coclaw/pion-node 内部处理(env → npm 平台包 → PATH)。
15
15
  *
@@ -1,247 +0,0 @@
1
- import { createRequire } from 'module';
2
- import nodePath from 'path';
3
- import fsSync from 'fs';
4
- import fsPromises from 'fs/promises';
5
- import { remoteLog as defaultRemoteLog } from '../remote-log.js';
6
-
7
- const SUPPORTED_PLATFORMS = new Set([
8
- 'linux-x64',
9
- 'linux-arm64',
10
- 'darwin-x64',
11
- 'darwin-arm64',
12
- 'win32-x64',
13
- ]);
14
-
15
- const DEFAULT_IMPORT_TIMEOUT_MS = 10_000;
16
-
17
- /**
18
- * 给 promise 加超时保护。超时后 reject,但原 promise 仍在后台执行——
19
- * JS 无法取消 pending 的 import(),超时只是让调用方不再等待。
20
- * @param {Promise} promise
21
- * @param {number} ms
22
- * @param {string} label - 用于错误信息
23
- */
24
- function withTimeout(promise, ms, label) {
25
- // 超时后原 promise 仍在后台执行(JS 无法取消 pending 的 import())。
26
- // 必须 .catch 兜住原 promise 的潜在 rejection,否则超时场景下
27
- // 原 promise 最终 reject 会成为 unhandled rejection,导致进程终止。
28
- promise.catch(() => {});
29
- let timer;
30
- const timeout = new Promise((_, reject) => {
31
- timer = setTimeout(() => reject(new Error(`${label} timed out after ${ms}ms`)), ms);
32
- timer.unref?.();
33
- });
34
- return Promise.race([promise, timeout]).finally(() => clearTimeout(timer));
35
- }
36
-
37
- /**
38
- * 解析 vendor 源和部署目标路径。
39
- * @param {string} platformKey - 如 'linux-x64'
40
- * @param {string} pluginRoot - 插件根目录
41
- * @returns {{ src: string, dest: string, destDir: string }}
42
- */
43
- export function defaultResolvePaths(platformKey, pluginRoot) {
44
- const src = nodePath.join(pluginRoot, 'vendor', 'ndc-prebuilds', platformKey, 'node_datachannel.node');
45
-
46
- // 定位 node-datachannel 包根:从入口路径向上查找 package.json
47
- const require = createRequire(nodePath.join(pluginRoot, 'package.json'));
48
- const entryPath = require.resolve('node-datachannel');
49
- /* c8 ignore start -- node-datachannel 依赖已于 2026-04-19 摘除,以下路径仅在 ndc 实际安装时命中;代码保留作为过渡期 fallback 自然失败锚点,待 ndc-preloader 整体清理时一并删除 */
50
- let pkgRoot = nodePath.dirname(entryPath);
51
- while (pkgRoot !== nodePath.dirname(pkgRoot)) {
52
- try {
53
- const pkg = JSON.parse(fsSync.readFileSync(nodePath.join(pkgRoot, 'package.json'), 'utf8'));
54
- if (pkg.name === 'node-datachannel') break;
55
- } catch { /* 继续向上 */ }
56
- pkgRoot = nodePath.dirname(pkgRoot);
57
- }
58
- const destDir = nodePath.join(pkgRoot, 'build', 'Release');
59
- const dest = nodePath.join(destDir, 'node_datachannel.node');
60
-
61
- return { src, dest, destDir };
62
- /* c8 ignore stop */
63
- }
64
-
65
- /**
66
- * ndc polyfill 的 RTCPeerConnection 将 iceServers 的 username:credential 直接拼入 URL,
67
- * 但 TURN REST API 的 username 格式为 `timestamp:identity`(含冒号),
68
- * 导致 libdatachannel 的 URL parser 截断 username。
69
- * 此 wrapper 在传入 polyfill 前对 username/credential 做 percent-encoding 规避该问题。
70
- */
71
- function wrapNdcCredentials(NativeRTC) {
72
- return class extends NativeRTC {
73
- constructor(config = {}) {
74
- if (config?.iceServers) {
75
- config = {
76
- ...config,
77
- iceServers: config.iceServers.map(s => {
78
- /* c8 ignore next -- TURN 无凭据时的短路,集成环境下不经过此路径 */
79
- if (!s.username && !s.credential) return s;
80
- return {
81
- ...s,
82
- username: s.username ? encodeURIComponent(s.username) : s.username,
83
- credential: s.credential ? encodeURIComponent(s.credential) : s.credential,
84
- };
85
- }),
86
- };
87
- }
88
- super(config);
89
- }
90
- };
91
- }
92
-
93
- /**
94
- * 预加载 WebRTC 实现:优先 node-datachannel,失败回退 werift,全部失败返回 null。
95
- *
96
- * **此函数永不 throw**——所有异常内部捕获,通过 remoteLog 报告。
97
- * 返回值始终为 { PeerConnection, cleanup, impl } 结构。
98
- *
99
- * @param {object} [deps] - 可注入依赖(测试用)
100
- * @param {object} [deps.fs] - { access, copyFile, mkdir }
101
- * @param {Function} [deps.dynamicImport] - (specifier) => import(specifier)
102
- * @param {Function} [deps.remoteLog] - (text) => void
103
- * @param {string} [deps.platform] - 覆盖 process.platform
104
- * @param {string} [deps.arch] - 覆盖 process.arch
105
- * @param {string} [deps.pluginRoot] - 覆盖插件根目录
106
- * @param {Function} [deps.resolvePaths] - (platformKey, pluginRoot) => { src, dest, destDir }
107
- * @param {number} [deps.importTimeout] - 动态 import 超时(ms),默认 10s
108
- * @returns {Promise<{ PeerConnection: Function|null, cleanup: Function|null, impl: string }>}
109
- */
110
- export async function preloadNdc(deps = {}) {
111
- const fs = deps.fs ?? fsPromises;
112
- const dynamicImport = deps.dynamicImport ?? ((spec) => import(spec));
113
- const log = deps.remoteLog ?? defaultRemoteLog;
114
- const platform = deps.platform ?? process.platform;
115
- const arch = deps.arch ?? process.arch;
116
- const pluginRoot = deps.pluginRoot ?? nodePath.resolve(import.meta.dirname, '../..');
117
- const resolvePaths = deps.resolvePaths ?? defaultResolvePaths;
118
- const importTimeout = deps.importTimeout ?? DEFAULT_IMPORT_TIMEOUT_MS;
119
-
120
- const platformKey = `${platform}-${arch}`;
121
- log(`ndc.preload platform=${platformKey}`);
122
-
123
- try {
124
- // 平台检查
125
- if (!SUPPORTED_PLATFORMS.has(platformKey)) {
126
- log(`ndc.skip reason=unsupported-platform platform=${platformKey}`);
127
- return weriftFallback(dynamicImport, log, importTimeout);
128
- }
129
- const { src, dest, destDir } = resolvePaths(platformKey, pluginRoot);
130
-
131
- // 检查目标 binary 是否已存在(正常 pnpm install 或已执行过 bootstrap)
132
- let needCopy = false;
133
- try {
134
- await fs.access(dest);
135
- log('ndc.binary-exists');
136
- } catch {
137
- needCopy = true;
138
- }
139
-
140
- if (needCopy) {
141
- // 检查 vendor 源 binary
142
- try {
143
- await fs.access(src);
144
- } catch {
145
- log('ndc.fallback reason=binary-missing');
146
- return weriftFallback(dynamicImport, log, importTimeout);
147
- }
148
-
149
- // 部署 binary
150
- try {
151
- await fs.mkdir(destDir, { recursive: true });
152
- await fs.copyFile(src, dest);
153
- log('ndc.binary-deployed');
154
- } catch (err) {
155
- log(`ndc.fallback reason=copy-failed error=${err.message}`);
156
- return weriftFallback(dynamicImport, log, importTimeout);
157
- }
158
- }
159
-
160
- // 加载模块(带超时保护,防止 native binding dlopen 卡住)
161
- let polyfill, ndc;
162
- try {
163
- polyfill = await withTimeout(
164
- dynamicImport('node-datachannel/polyfill'),
165
- importTimeout,
166
- 'import(node-datachannel/polyfill)',
167
- );
168
- ndc = await withTimeout(
169
- dynamicImport('node-datachannel'),
170
- importTimeout,
171
- 'import(node-datachannel)',
172
- );
173
- } catch (err) {
174
- log(`ndc.fallback reason=import-failed error=${err.message}`);
175
- return weriftFallback(dynamicImport, log, importTimeout);
176
- }
177
-
178
- const { RTCPeerConnection } = polyfill;
179
- const cleanup = ndc.cleanup ?? ndc.default?.cleanup ?? null;
180
-
181
- // 验证 RTCPeerConnection 可用(不创建实例,避免 native thread 阻止进程退出)
182
- if (typeof RTCPeerConnection !== 'function') {
183
- log('ndc.fallback reason=smoke-failed error=RTCPeerConnection is not a function');
184
- return weriftFallback(dynamicImport, log, importTimeout);
185
- }
186
-
187
- // 注册 libdatachannel 内部日志回调(Warning 级别),
188
- // 用于捕获 ICE/DTLS/SCTP 层断连原因。
189
- // initLogger 是进程全局单例,调用一次即可(cleanup 不会被调用,logger 全程有效)。
190
- // callback 通过 TSFN 投递到 JS 主线程,Warning 级别正常运行时零输出。
191
- /* c8 ignore next -- ??/?. fallback */
192
- const initLogger = ndc.initLogger ?? ndc.default?.initLogger;
193
- if (typeof initLogger === 'function') {
194
- try {
195
- initLogger('Warning', (level, message) => {
196
- try {
197
- const msg = typeof message === 'string' ? message.replace(/\n/g, '\\n') : message;
198
- log(`ndc.native level=${level} ${msg}`);
199
- } catch { /* 不让任何异常传播到 native 层 */ }
200
- });
201
- log('ndc.logger-registered level=Warning');
202
- } catch (err) {
203
- // initLogger 失败不影响 ndc 正常使用
204
- log(`ndc.logger-failed error=${err.message}`);
205
- }
206
- }
207
-
208
- // 重要:调用方在不再需要 node-datachannel 时(如 bridge stop),必须调用 cleanup()。
209
- // node-datachannel 内部使用 ThreadSafeCallback 维持 native threads,不调用 cleanup()
210
- // 会阻止 Node 进程正常退出(上游 issue #366)。
211
- // 当前 RealtimeBridge.stop() 不调用 cleanup()(阻塞 10s+),native threads 保持活跃供复用。
212
- // 进程退出时 OS 会回收所有资源。
213
- log(`ndc.loaded platform=${platformKey}`);
214
- return { PeerConnection: wrapNdcCredentials(RTCPeerConnection), cleanup, impl: 'ndc' };
215
- } catch (err) {
216
- // node-datachannel 依赖已摘除:require.resolve 抛 MODULE_NOT_FOUND 是过渡期
217
- // 预期路径,记为 skip 而非误导性的 unexpected。其余才是真正未预期异常。
218
- if (err?.code === 'MODULE_NOT_FOUND') {
219
- log('ndc.skip reason=ndc-not-installed');
220
- } else {
221
- log(`ndc.fallback reason=unexpected error=${err.message}`);
222
- }
223
- return weriftFallback(dynamicImport, log, importTimeout);
224
- }
225
- }
226
-
227
- /**
228
- * 回退到 werift。加载也带超时保护。
229
- * werift 也失败时返回 PeerConnection: null(WebRTC 不可用但不影响 gateway)。
230
- * @param {Function} dynamicImport
231
- * @param {Function} log
232
- * @param {number} importTimeout
233
- */
234
- async function weriftFallback(dynamicImport, log, importTimeout) {
235
- try {
236
- const { RTCPeerConnection } = await withTimeout(
237
- dynamicImport('werift'),
238
- importTimeout,
239
- 'import(werift)',
240
- );
241
- log('webrtc.fallback-to-werift');
242
- return { PeerConnection: RTCPeerConnection, cleanup: null, impl: 'werift' };
243
- } catch (err) {
244
- log(`webrtc.all-unavailable error=${err.message}`);
245
- return { PeerConnection: null, cleanup: null, impl: 'none' };
246
- }
247
- }