@adhdev/daemon-core 0.9.76-rc.31 → 0.9.76-rc.32
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/dist/index.js +2 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/cli-adapters/provider-cli-adapter.ts +7 -3
package/dist/index.mjs
CHANGED
|
@@ -3270,9 +3270,8 @@ ${lastSnapshot}`;
|
|
|
3270
3270
|
};
|
|
3271
3271
|
this.recordTrace("submit_echo_missing", diagnostic);
|
|
3272
3272
|
if (this.requirePromptEchoBeforeSubmit) {
|
|
3273
|
-
|
|
3274
|
-
|
|
3275
|
-
completion.rejectOnce(new Error(message));
|
|
3273
|
+
LOG.warn("CLI", `[${this.cliType}] prompt echo was not observed before submit; sending guarded submit key anyway elapsed=${elapsed}ms maxEchoWaitMs=${state.maxEchoWaitMs} screen=${JSON.stringify(diagnostic.screenText).slice(0, 240)}`);
|
|
3274
|
+
this.submitSendKey(state, completion);
|
|
3276
3275
|
return;
|
|
3277
3276
|
}
|
|
3278
3277
|
LOG.warn("CLI", `[${this.cliType}] prompt echo was not observed before submit; sending submit key anyway elapsed=${elapsed}ms maxEchoWaitMs=${state.maxEchoWaitMs}`);
|