vscode-github-actions icon indicating copy to clipboard operation
vscode-github-actions copied to clipboard

ooo: Request textDocument/completion failed with message: Maximum call stack size exceeded: Error: Request textDocument/completion failed with message: Maximum call stack size exceeded

Open ssbarnea opened this issue 1 year ago • 3 comments

Describe the bug

Extension is running out of memory sometimes:

2024-07-31 13:08:28.569 [error] Request textDocument/completion failed with message: Maximum call stack size exceeded: Error: Request textDocument/completion failed with message: Maximum call stack size exceeded
	at /Users/ssbarnea/.vscode/extensions/github.vscode-github-actions-0.26.3/dist/extension-node.js:2:633457
	at /Users/ssbarnea/.vscode/extensions/github.vscode-github-actions-0.26.3/dist/extension-node.js:2:633751
	at Timeout._onTimeout (/Users/ssbarnea/.vscode/extensions/github.vscode-github-actions-0.26.3/dist/extension-node.js:2:634113)
	at listOnTimeout (node:internal/timers:573:17)
	at process.processTimers (node:internal/timers:514:7)
2024-08-01 13:33:57.033 [error] [Extension Host] Error loading yaml file

To Reproduce Steps to reproduce the behavior:

  1. With this workflow '...'
  2. Do this '...'
  3. See error

Expected behavior A clear and concise description of what you expected to happen.

Screenshots If applicable, add screenshots to help explain your problem.

Extension Version v0.26.3

Additional context

That is on a 64GB M1 max laptop, so bit unexpected. I wonder if that is caused by node running out of memory as I encountered recently another issue with it that required me to add NODE_OPTIONS=--max-old-space-size=4096 in order to just run yarn webpack... :p

ssbarnea avatar Aug 01 '24 17:08 ssbarnea

repro:

jobs:
    asdf:
      strategy:
        matrix:
          python_version: ["3"]

place the cursor after the 3 and add a .:

i doubt this is memory related, its probably a recursive function call that's getting caught in an infinite loop

DetachHead avatar Oct 08 '24 09:10 DetachHead

+1

sonni-dev avatar May 08 '25 23:05 sonni-dev

Can confirm @DetachHead's reproduction

frederikheld avatar Nov 09 '25 18:11 frederikheld