MCPcopy Index your code
hub / github.com/QLHazyCoder/FlowPilot / notifyStepError

Function notifyStepError

background.js:4447–4451  ·  view source on GitHub ↗
(step, error)

Source from the content-addressed store, hash-verified

4445}
4446
4447function notifyStepError(step, error) {
4448 const waiter = stepWaiters.get(step);
4449 console.warn(LOG_PREFIX, `[notifyStepError] step ${step}, hasWaiter=${Boolean(waiter)}, error=${error}`);
4450 if (waiter) waiter.reject(new Error(error));
4451}
4452
4453async function completeStepFromBackground(step, payload = {}) {
4454 if (stopRequested) {

Callers 3

handleMessageFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected