VSCode error "queue can't hold so many messages". How do I enlarge capacity?

VSCode error "queue can't hold so many messages". How do I enlarge capacity?

John_Shimkus
Explorer Explorer
330 Views
2 Replies
Message 1 of 3

VSCode error "queue can't hold so many messages". How do I enlarge capacity?

John_Shimkus
Explorer
Explorer

While debugging in VSCode my program stops running and shows this error, in VSCode, on a line of code, "the queue can't hold so many messages; you need to enlarge its capacity".

 

How do I "Enlarge its capacity"?

 

BTW, the program runs and finishes fine if I'm not debugging it.

0 Likes
331 Views
2 Replies
Replies (2)
Message 2 of 3

LDShaw
Collaborator
Collaborator

Without knowing what you are working on or anything about your setup I can only take a stab at it. 

Increase Debugger Timeout:

If the debugger is timing out, you can increase the timeout settings.
Add "timeout": 10000 (or a higher value) to your launch.json configuration under the specific debug configuration.

or look for Extension Conflicts: Some VSCode extensions might interfere with the debugging process. Disabling extensions temporarily can help identify if one of them is causing the issue.

My guess is it's in the extensions. 

0 Likes
Message 3 of 3

John_Shimkus
Explorer
Explorer

Thanks for the suggestions but unfortunately, they did not help.

I uninstalled all extensions except AutoLisp, error still occurs.
Tried to add the timeout value to my launch.json file but VSCode did not recognize "timeout" (see attached).

0 Likes