langgenius/dify · error · Error

Plugin debug failed

Error message

Plugin debug failed

What it means

Error "Plugin debug failed" thrown in langgenius/dify.

Source

Thrown at web/app/components/workflow/nodes/_base/hooks/use-one-step-run.ts:616

          pluginSingleRunAbortRef.current = null
        })

      if (!pluginSingleRunActiveRef.current || token !== pluginSingleRunTokenRef.current)
        return null

      if (requestError) {
        if (controller.signal.aborted) return null

        toast.error(requestError.message)
        cancelPluginSingleRun()
        throw requestError
      }

      if (!response) {
        const message = 'Plugin debug failed'
        toast.error(message)
        cancelPluginSingleRun()
        throw new Error(message)
      }

      if (response?.status === 'waiting') {
        const delay = Number(response.retry_in) || 2000
        if (!pluginSingleRunActiveRef.current || token !== pluginSingleRunTokenRef.current)
          return null

        await new Promise<void>((resolve) => {
          const timeoutId = window.setTimeout(resolve, delay)
          pluginSingleRunTimeoutRef.current = timeoutId
          pluginSingleRunDelayResolveRef.current = resolve
          controller.signal.addEventListener(
            'abort',
            () => {
              window.clearTimeout(timeoutId)
              resolve()
            },
            { once: true },

View on GitHub (pinned to ef8544b173)

When it happens

Trigger: Thrown at web/app/components/workflow/nodes/_base/hooks/use-one-step-run.ts:616 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of langgenius/dify@ef8544b173 (2026-08-12). Data as JSON: /api/errors/a028f3215914535f. Report an issue: GitHub.