Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Testing panel skipping tests silently with "[[object Object]] Cannot read property 'toString' of undefined" #17386

Closed
oscarhermoso opened this issue Sep 12, 2021 · 4 comments · Fixed by #17496
Assignees
Labels
area-testing bug Issue identified by VS Code Team member as probable bug verified Verification succeeded

Comments

@oscarhermoso
Copy link

oscarhermoso commented Sep 12, 2021

Environment data

  • VS Code version:
    Version: 1.60.0
    Commit: e7d7e9a9348e6a8cc8c03f877d39cb72e5dfb1ff
    Date: 2021-09-01T10:43:02.136Z
    Electron: 13.1.8
    Chrome: 91.0.4472.164
    Node.js: 14.16.0
    V8: 9.1.269.39-electron.0
  • Extension version (available under the Extensions sidebar): v2021.9.1218897484
  • OS and version: OS: Linux x64 5.11.0-7620-generic
  • Python version: Python 3.8.11 64-bit (mcr.microsoft.com/vscode/devcontainers/python:0.201-3.8)
  • Type of virtual environment used: N/A (VS Code Dev container)
  • Relevant/affected Python packages and their versions: XXX
  • Relevant/affected Python-related VS Code extensions and their versions: N/A
  • Value of the python.languageServer setting: "Pylance"

[NOTE: If you suspect that your issue is related to the Microsoft Python Language Server (python.languageServer: 'Microsoft'), please download our new language server Pylance from the VS Code marketplace to see if that fixes your issue]

Expected behaviour

Running Django unit tests via the Testing panel in the sidebar, expect output to have same results as python manage.py test.

Actual behaviour

Clicking on button in VSCode to run the same tests only runs 4 tests. Other tests are skipped silently. Previously, this would run to completion for all tests.

Total number of tests expected to run: 17
Total number of tests run: 17
Total number of tests passed: 4
Total number of tests failed: 0
Total number of tests failed with errors: 0
Total number of tests skipped: 0
Finished running tests!

Seems to produce a JS error in VSCode with Developer Tools showing:

[[object Object]]Cannot read property 'toString' of undefined

Steps to reproduce:

[NOTE: Self-contained, minimal reproducing code samples are extremely helpful and will expedite addressing your issue]

  1. Click on the "Run Tests" button in the sidebar panel and see tests fail

(Will try to find time to create a reproducible sample, but any advice before then would be super appreciated ) 😊

2021-09-12.10-27-15.1.mp4

Logs

Python Output

Output for Python, dev tools, and test output

Testing Sidebar Panel

image

Python Output

> /usr/local/bin/python ~/.vscode-server/extensions/ms-python.python-2021.9.1218897484/pythonFiles/visualstudio_py_testlauncher.py --us=. --up=test*.py --uvInt=2 --result-port=44997 -taccounts.tests.test_serializers.UserSerializerTests.test_conflict -taccounts.tests.test_serializers.UserSerializerTests.test_create --testFile=/workspace/accounts/tests/test_serializers.py
cwd: /workspace
> /usr/local/bin/python ~/.vscode-server/extensions/ms-python.python-2021.9.1218897484/pythonFiles/visualstudio_py_testlauncher.py --us=. --up=test*.py --uvInt=2 --result-port=44997 -taccounts.tests.test_serializers.UserSerializerTests.test_conflict -taccounts.tests.test_serializers.UserSerializerTests.test_create --testFile=/workspace/accounts/tests/test_serializers.py
cwd: /workspace
> /usr/local/bin/python ~/.vscode-server/extensions/ms-python.python-2021.9.1218897484/pythonFiles/visualstudio_py_testlauncher.py --us=. --up=test*.py --uvInt=2 --result-port=44997 -taccounts.tests.test_views.SignupViewTests.test_get_logged_in -taccounts.tests.test_views.SignupViewTests.test_get_logged_out -taccounts.tests.test_views.SignupViewTests.test_get_signup_incomplete -taccounts.tests.test_views.UserCreateAPIView.test_other_methods -taccounts.tests.test_views.UserCreateAPIView.test_post_invalid_email -taccounts.tests.test_views.UserCreateAPIView.test_post_unverified_user -taccounts.tests.test_views.UserCreateAPIView.test_post_valid_email -taccounts.tests.test_views.UserCreateAPIView.test_post_verified_user --testFile=/workspace/accounts/tests/test_views.py
cwd: /workspace
> /usr/local/bin/python ~/.vscode-server/extensions/ms-python.python-2021.9.1218897484/pythonFiles/visualstudio_py_testlauncher.py --us=. --up=test*.py --uvInt=2 --result-port=44997 -taccounts.tests.test_views.SignupViewTests.test_get_logged_in -taccounts.tests.test_views.SignupViewTests.test_get_logged_out -taccounts.tests.test_views.SignupViewTests.test_get_signup_incomplete -taccounts.tests.test_views.UserCreateAPIView.test_other_methods -taccounts.tests.test_views.UserCreateAPIView.test_post_invalid_email -taccounts.tests.test_views.UserCreateAPIView.test_post_unverified_user -taccounts.tests.test_views.UserCreateAPIView.test_post_valid_email -taccounts.tests.test_views.UserCreateAPIView.test_post_verified_user --testFile=/workspace/accounts/tests/test_views.py
cwd: /workspace
Error 2021-09-12 02:00:19: [object Object] [object Object]
> /usr/local/bin/python ~/.vscode-server/extensions/ms-python.python-2021.9.1218897484/pythonFiles/visualstudio_py_testlauncher.py --us=. --up=test*.py --uvInt=2 --result-port=44997 -tboard.tests.test_views.ChatroomCreationTest.test_name_with_spaces --testFile=/workspace/board/tests/test_views.py
cwd: /workspace
> /usr/local/bin/python ~/.vscode-server/extensions/ms-python.python-2021.9.1218897484/pythonFiles/visualstudio_py_testlauncher.py --us=. --up=test*.py --uvInt=2 --result-port=44997 -tboard.tests.test_views.ChatroomCreationTest.test_name_with_spaces --testFile=/workspace/board/tests/test_views.py
cwd: /workspace
Error 2021-09-12 02:00:19: [object Object] [object Object]
> /usr/local/bin/python ~/.vscode-server/extensions/ms-python.python-2021.9.1218897484/pythonFiles/visualstudio_py_testlauncher.py --us=. --up=test*.py --uvInt=2 --result-port=44997 -tlanding.tests.test_views.LandingViewTests.test_logged_in -tlanding.tests.test_views.LandingViewTests.test_logged_out --testFile=/workspace/landing/tests/test_views.py
cwd: /workspace
> /usr/local/bin/python ~/.vscode-server/extensions/ms-python.python-2021.9.1218897484/pythonFiles/visualstudio_py_testlauncher.py --us=. --up=test*.py --uvInt=2 --result-port=44997 -tlanding.tests.test_views.LandingViewTests.test_logged_in -tlanding.tests.test_views.LandingViewTests.test_logged_out --testFile=/workspace/landing/tests/test_views.py
cwd: /workspace
Error 2021-09-12 02:00:19: [object Object] [object Object]
> /usr/local/bin/python ~/.vscode-server/extensions/ms-python.python-2021.9.1218897484/pythonFiles/visualstudio_py_testlauncher.py --us=. --up=test*.py --uvInt=2 --result-port=44997 -tsocial.tests.test_views.BroadcastViewTests.test_logged_in -tsocial.tests.test_views.BroadcastViewTests.test_logged_out --testFile=/workspace/social/tests/test_views.py
cwd: /workspace
> /usr/local/bin/python ~/.vscode-server/extensions/ms-python.python-2021.9.1218897484/pythonFiles/visualstudio_py_testlauncher.py --us=. --up=test*.py --uvInt=2 --result-port=44997 -tsocial.tests.test_views.BroadcastViewTests.test_logged_in -tsocial.tests.test_views.BroadcastViewTests.test_logged_out --testFile=/workspace/social/tests/test_views.py
cwd: /workspace
Error 2021-09-12 02:00:20: [object Object] [object Object]
> /usr/local/bin/python ~/.vscode-server/extensions/ms-python.python-2021.9.1218897484/pythonFiles/visualstudio_py_testlauncher.py --us=. --up=test*.py --uvInt=2 --result-port=44997 -tusers.tests.test_models.UsersManagersTests.test_create_superuser -tusers.tests.test_models.UsersManagersTests.test_create_user --testFile=/workspace/users/tests/test_models.py
cwd: /workspace
> /usr/local/bin/python ~/.vscode-server/extensions/ms-python.python-2021.9.1218897484/pythonFiles/visualstudio_py_testlauncher.py --us=. --up=test*.py --uvInt=2 --result-port=44997 -tusers.tests.test_models.UsersManagersTests.test_create_superuser -tusers.tests.test_models.UsersManagersTests.test_create_user --testFile=/workspace/users/tests/test_models.py
cwd: /workspace

Command Palette > Test:Show Output

Running tests (unittest): /workspace
Running tests: [object Object]
[object Object]
./accounts/tests/test_serializers.py::UserSerializerTests::test_conflict Passed
./accounts/tests/test_serializers.py::UserSerializerTests::test_create Passed
Running tests: [object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
[object Object]
Running tests: [object Object]
Running tests: [object Object]
[object Object]
Running tests: [object Object]
[object Object]
Running tests: [object Object]
[object Object]
./users/tests/test_models.py::UsersManagersTests::test_create_superuser Passed
./users/tests/test_models.py::UsersManagersTests::test_create_user Passed
Total number of tests expected to run: 17
Total number of tests run: 17
Total number of tests passed: 4
Total number of tests failed: 0
Total number of tests failed with errors: 0
Total number of tests skipped: 0
Finished running tests!

Developer Tools Output

Developer tools output (pretty large, ~900 lines)

Screenshot

image

mainThreadExtensionService.ts:63 [[object Object]]Cannot read property 'toString' of undefined
$onExtensionRuntimeError @ mainThreadExtensionService.ts:63
_doInvokeHandler @ rpcProtocol.ts:472
_invokeHandler @ rpcProtocol.ts:457
_receiveRequest @ rpcProtocol.ts:373
_receiveOneMessage @ rpcProtocol.ts:295
(anonymous) @ rpcProtocol.ts:160
fire @ event.ts:577
fire @ ipc.net.ts:513
_receiveMessage @ ipc.net.ts:871
(anonymous) @ ipc.net.ts:710
fire @ event.ts:577
acceptChunk @ ipc.net.ts:286
(anonymous) @ ipc.net.ts:247
(anonymous) @ browserSocketFactory.ts:197
fire @ event.ts:577
E._fileReader.onload @ browserSocketFactory.ts:81
load (async)
E @ browserSocketFactory.ts:77
create @ browserSocketFactory.ts:181
connect @ browserSocketFactory.ts:243
a @ remoteAgentConnection.ts:191
n @ remoteAgentConnection.ts:232
s @ remoteAgentConnection.ts:309
f @ remoteAgentConnection.ts:351
m @ remoteAgentConnection.ts:421
processTicksAndRejections @ internal/process/task_queues.js:93
async function (async)
m @ remoteAgentConnection.ts:420
(anonymous) @ remoteExtensionHost.ts:129
processTicksAndRejections @ internal/process/task_queues.js:93
Promise.then (async)
start @ remoteExtensionHost.ts:105
Cr @ extensionHostManager.ts:95
_createInstance @ instantiationService.ts:110
createInstance @ instantiationService.ts:76
i @ extensionHostManager.ts:56
(anonymous) @ abstractExtensionService.ts:589
_startExtensionHosts @ abstractExtensionService.ts:588
_initialize @ abstractExtensionService.ts:492
(anonymous) @ extensionService.ts:110
requestIdleCallback (async)
e.runWhenIdle @ async.ts:925
(anonymous) @ extensionService.ts:109
Promise.then (async)
cl @ extensionService.ts:107
_createInstance @ instantiationService.ts:110
_createServiceInstance @ instantiationService.ts:230
_createServiceInstanceWithOwner @ instantiationService.ts:219
_createAndCacheServiceInstance @ instantiationService.ts:208
_safeCreateAndCacheServiceInstance @ instantiationService.ts:151
_getOrCreateServiceInstance @ instantiationService.ts:135
get @ instantiationService.ts:54
initLayout @ layout.ts:257
(anonymous) @ workbench.ts:141
invokeFunction @ instantiationService.ts:61
startup @ workbench.ts:134
open @ shared.desktop.main.ts:112
async function (async)
open @ shared.desktop.main.ts:103
w @ desktop.main.ts:40
m.load.configureDeveloperSettings @ workbench.js:32
(anonymous) @ bootstrap-window.js:171
r._invokeFactory @ loader.js:1136
r.complete @ loader.js:1146
r._onModuleComplete @ loader.js:1772
r._onModuleComplete @ loader.js:1784
r._resolve @ loader.js:1732
r.defineModule @ loader.js:1375
p @ loader.js:1822
define @ loader.js:1900
(anonymous) @ tunnelServiceImpl.ts:35
(anonymous) @ fake:1
mainThreadExtensionService.ts:64 TypeError: Cannot read property 'toString' of undefined
	at c.onCloseSocket (vscode-file://vscode-app/home/vscode/.vscode-server/extensions/ms-python.python-2021.9.1218897484/out/client/extension.js:59)
	at Socket.<anonymous> (vscode-file://vscode-app/home/vscode/.vscode-server/extensions/ms-python.python-2021.9.1218897484/out/client/extension.js:59)
	at Socket.emit (events.js:315)
	at Socket.EventEmitter.emit (domain.js:467)
	at TCP.<anonymous> (net.js:673)
$onExtensionRuntimeError @ mainThreadExtensionService.ts:64
_doInvokeHandler @ rpcProtocol.ts:472
_invokeHandler @ rpcProtocol.ts:457
_receiveRequest @ rpcProtocol.ts:373
_receiveOneMessage @ rpcProtocol.ts:295
(anonymous) @ rpcProtocol.ts:160
fire @ event.ts:577
fire @ ipc.net.ts:513
_receiveMessage @ ipc.net.ts:871
(anonymous) @ ipc.net.ts:710
fire @ event.ts:577
acceptChunk @ ipc.net.ts:286
(anonymous) @ ipc.net.ts:247
(anonymous) @ browserSocketFactory.ts:197
fire @ event.ts:577
E._fileReader.onload @ browserSocketFactory.ts:81
load (async)
E @ browserSocketFactory.ts:77
create @ browserSocketFactory.ts:181
connect @ browserSocketFactory.ts:243
a @ remoteAgentConnection.ts:191
n @ remoteAgentConnection.ts:232
s @ remoteAgentConnection.ts:309
f @ remoteAgentConnection.ts:351
m @ remoteAgentConnection.ts:421
processTicksAndRejections @ internal/process/task_queues.js:93
async function (async)
m @ remoteAgentConnection.ts:420
(anonymous) @ remoteExtensionHost.ts:129
processTicksAndRejections @ internal/process/task_queues.js:93
Promise.then (async)
start @ remoteExtensionHost.ts:105
Cr @ extensionHostManager.ts:95
_createInstance @ instantiationService.ts:110
createInstance @ instantiationService.ts:76
i @ extensionHostManager.ts:56
(anonymous) @ abstractExtensionService.ts:589
_startExtensionHosts @ abstractExtensionService.ts:588
_initialize @ abstractExtensionService.ts:492
(anonymous) @ extensionService.ts:110
requestIdleCallback (async)
e.runWhenIdle @ async.ts:925
(anonymous) @ extensionService.ts:109
Promise.then (async)
cl @ extensionService.ts:107
_createInstance @ instantiationService.ts:110
_createServiceInstance @ instantiationService.ts:230
_createServiceInstanceWithOwner @ instantiationService.ts:219
_createAndCacheServiceInstance @ instantiationService.ts:208
_safeCreateAndCacheServiceInstance @ instantiationService.ts:151
_getOrCreateServiceInstance @ instantiationService.ts:135
get @ instantiationService.ts:54
initLayout @ layout.ts:257
(anonymous) @ workbench.ts:141
invokeFunction @ instantiationService.ts:61
startup @ workbench.ts:134
open @ shared.desktop.main.ts:112
async function (async)
open @ shared.desktop.main.ts:103
w @ desktop.main.ts:40
m.load.configureDeveloperSettings @ workbench.js:32
(anonymous) @ bootstrap-window.js:171
r._invokeFactory @ loader.js:1136
r.complete @ loader.js:1146
r._onModuleComplete @ loader.js:1772
r._onModuleComplete @ loader.js:1784
r._resolve @ loader.js:1732
r.defineModule @ loader.js:1375
p @ loader.js:1822
define @ loader.js:1900
(anonymous) @ tunnelServiceImpl.ts:35
(anonymous) @ fake:1
mainThreadExtensionService.ts:63 [[object Object]]Cannot read property 'toString' of undefined
$onExtensionRuntimeError @ mainThreadExtensionService.ts:63
_doInvokeHandler @ rpcProtocol.ts:472
_invokeHandler @ rpcProtocol.ts:457
_receiveRequest @ rpcProtocol.ts:373
_receiveOneMessage @ rpcProtocol.ts:295
(anonymous) @ rpcProtocol.ts:160
fire @ event.ts:577
fire @ ipc.net.ts:513
_receiveMessage @ ipc.net.ts:871
(anonymous) @ ipc.net.ts:710
fire @ event.ts:577
acceptChunk @ ipc.net.ts:286
(anonymous) @ ipc.net.ts:247
(anonymous) @ browserSocketFactory.ts:197
fire @ event.ts:577
E._fileReader.onload @ browserSocketFactory.ts:81
load (async)
E @ browserSocketFactory.ts:77
create @ browserSocketFactory.ts:181
connect @ browserSocketFactory.ts:243
a @ remoteAgentConnection.ts:191
n @ remoteAgentConnection.ts:232
s @ remoteAgentConnection.ts:309
f @ remoteAgentConnection.ts:351
m @ remoteAgentConnection.ts:421
processTicksAndRejections @ internal/process/task_queues.js:93
async function (async)
m @ remoteAgentConnection.ts:420
(anonymous) @ remoteExtensionHost.ts:129
processTicksAndRejections @ internal/process/task_queues.js:93
Promise.then (async)
start @ remoteExtensionHost.ts:105
Cr @ extensionHostManager.ts:95
_createInstance @ instantiationService.ts:110
createInstance @ instantiationService.ts:76
i @ extensionHostManager.ts:56
(anonymous) @ abstractExtensionService.ts:589
_startExtensionHosts @ abstractExtensionService.ts:588
_initialize @ abstractExtensionService.ts:492
(anonymous) @ extensionService.ts:110
requestIdleCallback (async)
e.runWhenIdle @ async.ts:925
(anonymous) @ extensionService.ts:109
Promise.then (async)
cl @ extensionService.ts:107
_createInstance @ instantiationService.ts:110
_createServiceInstance @ instantiationService.ts:230
_createServiceInstanceWithOwner @ instantiationService.ts:219
_createAndCacheServiceInstance @ instantiationService.ts:208
_safeCreateAndCacheServiceInstance @ instantiationService.ts:151
_getOrCreateServiceInstance @ instantiationService.ts:135
get @ instantiationService.ts:54
initLayout @ layout.ts:257
(anonymous) @ workbench.ts:141
invokeFunction @ instantiationService.ts:61
startup @ workbench.ts:134
open @ shared.desktop.main.ts:112
async function (async)
open @ shared.desktop.main.ts:103
w @ desktop.main.ts:40
m.load.configureDeveloperSettings @ workbench.js:32
(anonymous) @ bootstrap-window.js:171
r._invokeFactory @ loader.js:1136
r.complete @ loader.js:1146
r._onModuleComplete @ loader.js:1772
r._onModuleComplete @ loader.js:1784
r._resolve @ loader.js:1732
r.defineModule @ loader.js:1375
p @ loader.js:1822
define @ loader.js:1900
(anonymous) @ tunnelServiceImpl.ts:35
(anonymous) @ fake:1
mainThreadExtensionService.ts:64 TypeError: Cannot read property 'toString' of undefined
	at c.onCloseSocket (vscode-file://vscode-app/home/vscode/.vscode-server/extensions/ms-python.python-2021.9.1218897484/out/client/extension.js:59)
	at Socket.<anonymous> (vscode-file://vscode-app/home/vscode/.vscode-server/extensions/ms-python.python-2021.9.1218897484/out/client/extension.js:59)
	at Socket.emit (events.js:315)
	at Socket.EventEmitter.emit (domain.js:467)
	at TCP.<anonymous> (net.js:673)
$onExtensionRuntimeError @ mainThreadExtensionService.ts:64
_doInvokeHandler @ rpcProtocol.ts:472
_invokeHandler @ rpcProtocol.ts:457
_receiveRequest @ rpcProtocol.ts:373
_receiveOneMessage @ rpcProtocol.ts:295
(anonymous) @ rpcProtocol.ts:160
fire @ event.ts:577
fire @ ipc.net.ts:513
_receiveMessage @ ipc.net.ts:871
(anonymous) @ ipc.net.ts:710
fire @ event.ts:577
acceptChunk @ ipc.net.ts:286
(anonymous) @ ipc.net.ts:247
(anonymous) @ browserSocketFactory.ts:197
fire @ event.ts:577
E._fileReader.onload @ browserSocketFactory.ts:81
load (async)
E @ browserSocketFactory.ts:77
create @ browserSocketFactory.ts:181
connect @ browserSocketFactory.ts:243
a @ remoteAgentConnection.ts:191
n @ remoteAgentConnection.ts:232
s @ remoteAgentConnection.ts:309
f @ remoteAgentConnection.ts:351
m @ remoteAgentConnection.ts:421
processTicksAndRejections @ internal/process/task_queues.js:93
async function (async)
m @ remoteAgentConnection.ts:420
(anonymous) @ remoteExtensionHost.ts:129
processTicksAndRejections @ internal/process/task_queues.js:93
Promise.then (async)
start @ remoteExtensionHost.ts:105
Cr @ extensionHostManager.ts:95
_createInstance @ instantiationService.ts:110
createInstance @ instantiationService.ts:76
i @ extensionHostManager.ts:56
(anonymous) @ abstractExtensionService.ts:589
_startExtensionHosts @ abstractExtensionService.ts:588
_initialize @ abstractExtensionService.ts:492
(anonymous) @ extensionService.ts:110
requestIdleCallback (async)
e.runWhenIdle @ async.ts:925
(anonymous) @ extensionService.ts:109
Promise.then (async)
cl @ extensionService.ts:107
_createInstance @ instantiationService.ts:110
_createServiceInstance @ instantiationService.ts:230
_createServiceInstanceWithOwner @ instantiationService.ts:219
_createAndCacheServiceInstance @ instantiationService.ts:208
_safeCreateAndCacheServiceInstance @ instantiationService.ts:151
_getOrCreateServiceInstance @ instantiationService.ts:135
get @ instantiationService.ts:54
initLayout @ layout.ts:257
(anonymous) @ workbench.ts:141
invokeFunction @ instantiationService.ts:61
startup @ workbench.ts:134
open @ shared.desktop.main.ts:112
async function (async)
open @ shared.desktop.main.ts:103
w @ desktop.main.ts:40
m.load.configureDeveloperSettings @ workbench.js:32
(anonymous) @ bootstrap-window.js:171
r._invokeFactory @ loader.js:1136
r.complete @ loader.js:1146
r._onModuleComplete @ loader.js:1772
r._onModuleComplete @ loader.js:1784
r._resolve @ loader.js:1732
r.defineModule @ loader.js:1375
p @ loader.js:1822
define @ loader.js:1900
(anonymous) @ tunnelServiceImpl.ts:35
(anonymous) @ fake:1
mainThreadExtensionService.ts:63 [[object Object]]Cannot read property 'toString' of undefined
$onExtensionRuntimeError @ mainThreadExtensionService.ts:63
_doInvokeHandler @ rpcProtocol.ts:472
_invokeHandler @ rpcProtocol.ts:457
_receiveRequest @ rpcProtocol.ts:373
_receiveOneMessage @ rpcProtocol.ts:295
(anonymous) @ rpcProtocol.ts:160
fire @ event.ts:577
fire @ ipc.net.ts:513
_receiveMessage @ ipc.net.ts:871
(anonymous) @ ipc.net.ts:710
fire @ event.ts:577
acceptChunk @ ipc.net.ts:286
(anonymous) @ ipc.net.ts:247
(anonymous) @ browserSocketFactory.ts:197
fire @ event.ts:577
E._fileReader.onload @ browserSocketFactory.ts:81
load (async)
E @ browserSocketFactory.ts:77
create @ browserSocketFactory.ts:181
connect @ browserSocketFactory.ts:243
a @ remoteAgentConnection.ts:191
n @ remoteAgentConnection.ts:232
s @ remoteAgentConnection.ts:309
f @ remoteAgentConnection.ts:351
m @ remoteAgentConnection.ts:421
processTicksAndRejections @ internal/process/task_queues.js:93
async function (async)
m @ remoteAgentConnection.ts:420
(anonymous) @ remoteExtensionHost.ts:129
processTicksAndRejections @ internal/process/task_queues.js:93
Promise.then (async)
start @ remoteExtensionHost.ts:105
Cr @ extensionHostManager.ts:95
_createInstance @ instantiationService.ts:110
createInstance @ instantiationService.ts:76
i @ extensionHostManager.ts:56
(anonymous) @ abstractExtensionService.ts:589
_startExtensionHosts @ abstractExtensionService.ts:588
_initialize @ abstractExtensionService.ts:492
(anonymous) @ extensionService.ts:110
requestIdleCallback (async)
e.runWhenIdle @ async.ts:925
(anonymous) @ extensionService.ts:109
Promise.then (async)
cl @ extensionService.ts:107
_createInstance @ instantiationService.ts:110
_createServiceInstance @ instantiationService.ts:230
_createServiceInstanceWithOwner @ instantiationService.ts:219
_createAndCacheServiceInstance @ instantiationService.ts:208
_safeCreateAndCacheServiceInstance @ instantiationService.ts:151
_getOrCreateServiceInstance @ instantiationService.ts:135
get @ instantiationService.ts:54
initLayout @ layout.ts:257
(anonymous) @ workbench.ts:141
invokeFunction @ instantiationService.ts:61
startup @ workbench.ts:134
open @ shared.desktop.main.ts:112
async function (async)
open @ shared.desktop.main.ts:103
w @ desktop.main.ts:40
m.load.configureDeveloperSettings @ workbench.js:32
(anonymous) @ bootstrap-window.js:171
r._invokeFactory @ loader.js:1136
r.complete @ loader.js:1146
r._onModuleComplete @ loader.js:1772
r._onModuleComplete @ loader.js:1784
r._resolve @ loader.js:1732
r.defineModule @ loader.js:1375
p @ loader.js:1822
define @ loader.js:1900
(anonymous) @ tunnelServiceImpl.ts:35
(anonymous) @ fake:1
mainThreadExtensionService.ts:64 TypeError: Cannot read property 'toString' of undefined
	at c.onCloseSocket (vscode-file://vscode-app/home/vscode/.vscode-server/extensions/ms-python.python-2021.9.1218897484/out/client/extension.js:59)
	at Socket.<anonymous> (vscode-file://vscode-app/home/vscode/.vscode-server/extensions/ms-python.python-2021.9.1218897484/out/client/extension.js:59)
	at Socket.emit (events.js:315)
	at Socket.EventEmitter.emit (domain.js:467)
	at TCP.<anonymous> (net.js:673)
$onExtensionRuntimeError @ mainThreadExtensionService.ts:64
_doInvokeHandler @ rpcProtocol.ts:472
_invokeHandler @ rpcProtocol.ts:457
_receiveRequest @ rpcProtocol.ts:373
_receiveOneMessage @ rpcProtocol.ts:295
(anonymous) @ rpcProtocol.ts:160
fire @ event.ts:577
fire @ ipc.net.ts:513
_receiveMessage @ ipc.net.ts:871
(anonymous) @ ipc.net.ts:710
fire @ event.ts:577
acceptChunk @ ipc.net.ts:286
(anonymous) @ ipc.net.ts:247
(anonymous) @ browserSocketFactory.ts:197
fire @ event.ts:577
E._fileReader.onload @ browserSocketFactory.ts:81
load (async)
E @ browserSocketFactory.ts:77
create @ browserSocketFactory.ts:181
connect @ browserSocketFactory.ts:243
a @ remoteAgentConnection.ts:191
n @ remoteAgentConnection.ts:232
s @ remoteAgentConnection.ts:309
f @ remoteAgentConnection.ts:351
m @ remoteAgentConnection.ts:421
processTicksAndRejections @ internal/process/task_queues.js:93
async function (async)
m @ remoteAgentConnection.ts:420
(anonymous) @ remoteExtensionHost.ts:129
processTicksAndRejections @ internal/process/task_queues.js:93
Promise.then (async)
start @ remoteExtensionHost.ts:105
Cr @ extensionHostManager.ts:95
_createInstance @ instantiationService.ts:110
createInstance @ instantiationService.ts:76
i @ extensionHostManager.ts:56
(anonymous) @ abstractExtensionService.ts:589
_startExtensionHosts @ abstractExtensionService.ts:588
_initialize @ abstractExtensionService.ts:492
(anonymous) @ extensionService.ts:110
requestIdleCallback (async)
e.runWhenIdle @ async.ts:925
(anonymous) @ extensionService.ts:109
Promise.then (async)
cl @ extensionService.ts:107
_createInstance @ instantiationService.ts:110
_createServiceInstance @ instantiationService.ts:230
_createServiceInstanceWithOwner @ instantiationService.ts:219
_createAndCacheServiceInstance @ instantiationService.ts:208
_safeCreateAndCacheServiceInstance @ instantiationService.ts:151
_getOrCreateServiceInstance @ instantiationService.ts:135
get @ instantiationService.ts:54
initLayout @ layout.ts:257
(anonymous) @ workbench.ts:141
invokeFunction @ instantiationService.ts:61
startup @ workbench.ts:134
open @ shared.desktop.main.ts:112
async function (async)
open @ shared.desktop.main.ts:103
w @ desktop.main.ts:40
m.load.configureDeveloperSettings @ workbench.js:32
(anonymous) @ bootstrap-window.js:171
r._invokeFactory @ loader.js:1136
r.complete @ loader.js:1146
r._onModuleComplete @ loader.js:1772
r._onModuleComplete @ loader.js:1784
r._resolve @ loader.js:1732
r.defineModule @ loader.js:1375
p @ loader.js:1822
define @ loader.js:1900
(anonymous) @ tunnelServiceImpl.ts:35
(anonymous) @ fake:1
mainThreadExtensionService.ts:63 [[object Object]]Cannot read property 'toString' of undefined
$onExtensionRuntimeError @ mainThreadExtensionService.ts:63
_doInvokeHandler @ rpcProtocol.ts:472
_invokeHandler @ rpcProtocol.ts:457
_receiveRequest @ rpcProtocol.ts:373
_receiveOneMessage @ rpcProtocol.ts:295
(anonymous) @ rpcProtocol.ts:160
fire @ event.ts:577
fire @ ipc.net.ts:513
_receiveMessage @ ipc.net.ts:871
(anonymous) @ ipc.net.ts:710
fire @ event.ts:577
acceptChunk @ ipc.net.ts:286
(anonymous) @ ipc.net.ts:247
(anonymous) @ browserSocketFactory.ts:197
fire @ event.ts:577
E._fileReader.onload @ browserSocketFactory.ts:81
load (async)
E @ browserSocketFactory.ts:77
create @ browserSocketFactory.ts:181
connect @ browserSocketFactory.ts:243
a @ remoteAgentConnection.ts:191
n @ remoteAgentConnection.ts:232
s @ remoteAgentConnection.ts:309
f @ remoteAgentConnection.ts:351
m @ remoteAgentConnection.ts:421
processTicksAndRejections @ internal/process/task_queues.js:93
async function (async)
m @ remoteAgentConnection.ts:420
(anonymous) @ remoteExtensionHost.ts:129
processTicksAndRejections @ internal/process/task_queues.js:93
Promise.then (async)
start @ remoteExtensionHost.ts:105
Cr @ extensionHostManager.ts:95
_createInstance @ instantiationService.ts:110
createInstance @ instantiationService.ts:76
i @ extensionHostManager.ts:56
(anonymous) @ abstractExtensionService.ts:589
_startExtensionHosts @ abstractExtensionService.ts:588
_initialize @ abstractExtensionService.ts:492
(anonymous) @ extensionService.ts:110
requestIdleCallback (async)
e.runWhenIdle @ async.ts:925
(anonymous) @ extensionService.ts:109
Promise.then (async)
cl @ extensionService.ts:107
_createInstance @ instantiationService.ts:110
_createServiceInstance @ instantiationService.ts:230
_createServiceInstanceWithOwner @ instantiationService.ts:219
_createAndCacheServiceInstance @ instantiationService.ts:208
_safeCreateAndCacheServiceInstance @ instantiationService.ts:151
_getOrCreateServiceInstance @ instantiationService.ts:135
get @ instantiationService.ts:54
initLayout @ layout.ts:257
(anonymous) @ workbench.ts:141
invokeFunction @ instantiationService.ts:61
startup @ workbench.ts:134
open @ shared.desktop.main.ts:112
async function (async)
open @ shared.desktop.main.ts:103
w @ desktop.main.ts:40
m.load.configureDeveloperSettings @ workbench.js:32
(anonymous) @ bootstrap-window.js:171
r._invokeFactory @ loader.js:1136
r.complete @ loader.js:1146
r._onModuleComplete @ loader.js:1772
r._onModuleComplete @ loader.js:1784
r._resolve @ loader.js:1732
r.defineModule @ loader.js:1375
p @ loader.js:1822
define @ loader.js:1900
(anonymous) @ tunnelServiceImpl.ts:35
(anonymous) @ fake:1
mainThreadExtensionService.ts:64 TypeError: Cannot read property 'toString' of undefined
	at c.onCloseSocket (vscode-file://vscode-app/home/vscode/.vscode-server/extensions/ms-python.python-2021.9.1218897484/out/client/extension.js:59)
	at Socket.<anonymous> (vscode-file://vscode-app/home/vscode/.vscode-server/extensions/ms-python.python-2021.9.1218897484/out/client/extension.js:59)
	at Socket.emit (events.js:315)
	at Socket.EventEmitter.emit (domain.js:467)
	at TCP.<anonymous> (net.js:673)
$onExtensionRuntimeError @ mainThreadExtensionService.ts:64
_doInvokeHandler @ rpcProtocol.ts:472
_invokeHandler @ rpcProtocol.ts:457
_receiveRequest @ rpcProtocol.ts:373
_receiveOneMessage @ rpcProtocol.ts:295
(anonymous) @ rpcProtocol.ts:160
fire @ event.ts:577
fire @ ipc.net.ts:513
_receiveMessage @ ipc.net.ts:871
(anonymous) @ ipc.net.ts:710
fire @ event.ts:577
acceptChunk @ ipc.net.ts:286
(anonymous) @ ipc.net.ts:247
(anonymous) @ browserSocketFactory.ts:197
fire @ event.ts:577
E._fileReader.onload @ browserSocketFactory.ts:81
load (async)
E @ browserSocketFactory.ts:77
create @ browserSocketFactory.ts:181
connect @ browserSocketFactory.ts:243
a @ remoteAgentConnection.ts:191
n @ remoteAgentConnection.ts:232
s @ remoteAgentConnection.ts:309
f @ remoteAgentConnection.ts:351
m @ remoteAgentConnection.ts:421
processTicksAndRejections @ internal/process/task_queues.js:93
async function (async)
m @ remoteAgentConnection.ts:420
(anonymous) @ remoteExtensionHost.ts:129
processTicksAndRejections @ internal/process/task_queues.js:93
Promise.then (async)
start @ remoteExtensionHost.ts:105
Cr @ extensionHostManager.ts:95
_createInstance @ instantiationService.ts:110
createInstance @ instantiationService.ts:76
i @ extensionHostManager.ts:56
(anonymous) @ abstractExtensionService.ts:589
_startExtensionHosts @ abstractExtensionService.ts:588
_initialize @ abstractExtensionService.ts:492
(anonymous) @ extensionService.ts:110
requestIdleCallback (async)
e.runWhenIdle @ async.ts:925
(anonymous) @ extensionService.ts:109
Promise.then (async)
cl @ extensionService.ts:107
_createInstance @ instantiationService.ts:110
_createServiceInstance @ instantiationService.ts:230
_createServiceInstanceWithOwner @ instantiationService.ts:219
_createAndCacheServiceInstance @ instantiationService.ts:208
_safeCreateAndCacheServiceInstance @ instantiationService.ts:151
_getOrCreateServiceInstance @ instantiationService.ts:135
get @ instantiationService.ts:54
initLayout @ layout.ts:257
(anonymous) @ workbench.ts:141
invokeFunction @ instantiationService.ts:61
startup @ workbench.ts:134
open @ shared.desktop.main.ts:112
async function (async)
open @ shared.desktop.main.ts:103
w @ desktop.main.ts:40
m.load.configureDeveloperSettings @ workbench.js:32
(anonymous) @ bootstrap-window.js:171
r._invokeFactory @ loader.js:1136
r.complete @ loader.js:1146
r._onModuleComplete @ loader.js:1772
r._onModuleComplete @ loader.js:1784
r._resolve @ loader.js:1732
r.defineModule @ loader.js:1375
p @ loader.js:1822
define @ loader.js:1900
(anonymous) @ tunnelServiceImpl.ts:35
(anonymous) @ fake:1
mainThreadExtensionService.ts:63 [[object Object]]Cannot read property 'toString' of undefined
$onExtensionRuntimeError @ mainThreadExtensionService.ts:63
_doInvokeHandler @ rpcProtocol.ts:472
_invokeHandler @ rpcProtocol.ts:457
_receiveRequest @ rpcProtocol.ts:373
_receiveOneMessage @ rpcProtocol.ts:295
(anonymous) @ rpcProtocol.ts:160
fire @ event.ts:577
fire @ ipc.net.ts:513
_receiveMessage @ ipc.net.ts:871
(anonymous) @ ipc.net.ts:710
fire @ event.ts:577
acceptChunk @ ipc.net.ts:286
(anonymous) @ ipc.net.ts:247
(anonymous) @ browserSocketFactory.ts:197
fire @ event.ts:577
E._fileReader.onload @ browserSocketFactory.ts:81
load (async)
E @ browserSocketFactory.ts:77
create @ browserSocketFactory.ts:181
connect @ browserSocketFactory.ts:243
a @ remoteAgentConnection.ts:191
n @ remoteAgentConnection.ts:232
s @ remoteAgentConnection.ts:309
f @ remoteAgentConnection.ts:351
m @ remoteAgentConnection.ts:421
processTicksAndRejections @ internal/process/task_queues.js:93
async function (async)
m @ remoteAgentConnection.ts:420
(anonymous) @ remoteExtensionHost.ts:129
processTicksAndRejections @ internal/process/task_queues.js:93
Promise.then (async)
start @ remoteExtensionHost.ts:105
Cr @ extensionHostManager.ts:95
_createInstance @ instantiationService.ts:110
createInstance @ instantiationService.ts:76
i @ extensionHostManager.ts:56
(anonymous) @ abstractExtensionService.ts:589
_startExtensionHosts @ abstractExtensionService.ts:588
_initialize @ abstractExtensionService.ts:492
(anonymous) @ extensionService.ts:110
requestIdleCallback (async)
e.runWhenIdle @ async.ts:925
(anonymous) @ extensionService.ts:109
Promise.then (async)
cl @ extensionService.ts:107
_createInstance @ instantiationService.ts:110
_createServiceInstance @ instantiationService.ts:230
_createServiceInstanceWithOwner @ instantiationService.ts:219
_createAndCacheServiceInstance @ instantiationService.ts:208
_safeCreateAndCacheServiceInstance @ instantiationService.ts:151
_getOrCreateServiceInstance @ instantiationService.ts:135
get @ instantiationService.ts:54
initLayout @ layout.ts:257
(anonymous) @ workbench.ts:141
invokeFunction @ instantiationService.ts:61
startup @ workbench.ts:134
open @ shared.desktop.main.ts:112
async function (async)
open @ shared.desktop.main.ts:103
w @ desktop.main.ts:40
m.load.configureDeveloperSettings @ workbench.js:32
(anonymous) @ bootstrap-window.js:171
r._invokeFactory @ loader.js:1136
r.complete @ loader.js:1146
r._onModuleComplete @ loader.js:1772
r._onModuleComplete @ loader.js:1784
r._resolve @ loader.js:1732
r.defineModule @ loader.js:1375
p @ loader.js:1822
define @ loader.js:1900
(anonymous) @ tunnelServiceImpl.ts:35
(anonymous) @ fake:1
mainThreadExtensionService.ts:64 TypeError: Cannot read property 'toString' of undefined
	at c.onCloseSocket (vscode-file://vscode-app/home/vscode/.vscode-server/extensions/ms-python.python-2021.9.1218897484/out/client/extension.js:59)
	at Socket.<anonymous> (vscode-file://vscode-app/home/vscode/.vscode-server/extensions/ms-python.python-2021.9.1218897484/out/client/extension.js:59)
	at Socket.emit (events.js:315)
	at Socket.EventEmitter.emit (domain.js:467)
	at TCP.<anonymous> (net.js:673)
$onExtensionRuntimeError @ mainThreadExtensionService.ts:64
_doInvokeHandler @ rpcProtocol.ts:472
_invokeHandler @ rpcProtocol.ts:457
_receiveRequest @ rpcProtocol.ts:373
_receiveOneMessage @ rpcProtocol.ts:295
(anonymous) @ rpcProtocol.ts:160
fire @ event.ts:577
fire @ ipc.net.ts:513
_receiveMessage @ ipc.net.ts:871
(anonymous) @ ipc.net.ts:710
fire @ event.ts:577
acceptChunk @ ipc.net.ts:286
(anonymous) @ ipc.net.ts:247
(anonymous) @ browserSocketFactory.ts:197
fire @ event.ts:577
E._fileReader.onload @ browserSocketFactory.ts:81
load (async)
E @ browserSocketFactory.ts:77
create @ browserSocketFactory.ts:181
connect @ browserSocketFactory.ts:243
a @ remoteAgentConnection.ts:191
n @ remoteAgentConnection.ts:232
s @ remoteAgentConnection.ts:309
f @ remoteAgentConnection.ts:351
m @ remoteAgentConnection.ts:421
processTicksAndRejections @ internal/process/task_queues.js:93
async function (async)
m @ remoteAgentConnection.ts:420
(anonymous) @ remoteExtensionHost.ts:129
processTicksAndRejections @ internal/process/task_queues.js:93
Promise.then (async)
start @ remoteExtensionHost.ts:105
Cr @ extensionHostManager.ts:95
_createInstance @ instantiationService.ts:110
createInstance @ instantiationService.ts:76
i @ extensionHostManager.ts:56
(anonymous) @ abstractExtensionService.ts:589
_startExtensionHosts @ abstractExtensionService.ts:588
_initialize @ abstractExtensionService.ts:492
(anonymous) @ extensionService.ts:110
requestIdleCallback (async)
e.runWhenIdle @ async.ts:925
(anonymous) @ extensionService.ts:109
Promise.then (async)
cl @ extensionService.ts:107
_createInstance @ instantiationService.ts:110
_createServiceInstance @ instantiationService.ts:230
_createServiceInstanceWithOwner @ instantiationService.ts:219
_createAndCacheServiceInstance @ instantiationService.ts:208
_safeCreateAndCacheServiceInstance @ instantiationService.ts:151
_getOrCreateServiceInstance @ instantiationService.ts:135
get @ instantiationService.ts:54
initLayout @ layout.ts:257
(anonymous) @ workbench.ts:141
invokeFunction @ instantiationService.ts:61
startup @ workbench.ts:134
open @ shared.desktop.main.ts:112
async function (async)
open @ shared.desktop.main.ts:103
w @ desktop.main.ts:40
m.load.configureDeveloperSettings @ workbench.js:32
(anonymous) @ bootstrap-window.js:171
r._invokeFactory @ loader.js:1136
r.complete @ loader.js:1146
r._onModuleComplete @ loader.js:1772
r._onModuleComplete @ loader.js:1784
r._resolve @ loader.js:1732
r.defineModule @ loader.js:1375
p @ loader.js:1822
define @ loader.js:1900
(anonymous) @ tunnelServiceImpl.ts:35
(anonymous) @ fake:1
mainThreadExtensionService.ts:63 [[object Object]]Cannot read property 'toString' of undefined
$onExtensionRuntimeError @ mainThreadExtensionService.ts:63
_doInvokeHandler @ rpcProtocol.ts:472
_invokeHandler @ rpcProtocol.ts:457
_receiveRequest @ rpcProtocol.ts:373
_receiveOneMessage @ rpcProtocol.ts:295
(anonymous) @ rpcProtocol.ts:160
fire @ event.ts:577
fire @ ipc.net.ts:513
_receiveMessage @ ipc.net.ts:871
(anonymous) @ ipc.net.ts:710
fire @ event.ts:577
acceptChunk @ ipc.net.ts:286
(anonymous) @ ipc.net.ts:247
(anonymous) @ browserSocketFactory.ts:197
fire @ event.ts:577
E._fileReader.onload @ browserSocketFactory.ts:81
load (async)
E @ browserSocketFactory.ts:77
create @ browserSocketFactory.ts:181
connect @ browserSocketFactory.ts:243
a @ remoteAgentConnection.ts:191
n @ remoteAgentConnection.ts:232
s @ remoteAgentConnection.ts:309
f @ remoteAgentConnection.ts:351
m @ remoteAgentConnection.ts:421
processTicksAndRejections @ internal/process/task_queues.js:93
async function (async)
m @ remoteAgentConnection.ts:420
(anonymous) @ remoteExtensionHost.ts:129
processTicksAndRejections @ internal/process/task_queues.js:93
Promise.then (async)
start @ remoteExtensionHost.ts:105
Cr @ extensionHostManager.ts:95
_createInstance @ instantiationService.ts:110
createInstance @ instantiationService.ts:76
i @ extensionHostManager.ts:56
(anonymous) @ abstractExtensionService.ts:589
_startExtensionHosts @ abstractExtensionService.ts:588
_initialize @ abstractExtensionService.ts:492
(anonymous) @ extensionService.ts:110
requestIdleCallback (async)
e.runWhenIdle @ async.ts:925
(anonymous) @ extensionService.ts:109
Promise.then (async)
cl @ extensionService.ts:107
_createInstance @ instantiationService.ts:110
_createServiceInstance @ instantiationService.ts:230
_createServiceInstanceWithOwner @ instantiationService.ts:219
_createAndCacheServiceInstance @ instantiationService.ts:208
_safeCreateAndCacheServiceInstance @ instantiationService.ts:151
_getOrCreateServiceInstance @ instantiationService.ts:135
get @ instantiationService.ts:54
initLayout @ layout.ts:257
(anonymous) @ workbench.ts:141
invokeFunction @ instantiationService.ts:61
startup @ workbench.ts:134
open @ shared.desktop.main.ts:112
async function (async)
open @ shared.desktop.main.ts:103
w @ desktop.main.ts:40
m.load.configureDeveloperSettings @ workbench.js:32
(anonymous) @ bootstrap-window.js:171
r._invokeFactory @ loader.js:1136
r.complete @ loader.js:1146
r._onModuleComplete @ loader.js:1772
r._onModuleComplete @ loader.js:1784
r._resolve @ loader.js:1732
r.defineModule @ loader.js:1375
p @ loader.js:1822
define @ loader.js:1900
(anonymous) @ tunnelServiceImpl.ts:35
(anonymous) @ fake:1
mainThreadExtensionService.ts:64 TypeError: Cannot read property 'toString' of undefined
	at c.onCloseSocket (vscode-file://vscode-app/home/vscode/.vscode-server/extensions/ms-python.python-2021.9.1218897484/out/client/extension.js:59)
	at Socket.<anonymous> (vscode-file://vscode-app/home/vscode/.vscode-server/extensions/ms-python.python-2021.9.1218897484/out/client/extension.js:59)
	at Socket.emit (events.js:315)
	at Socket.EventEmitter.emit (domain.js:467)
	at TCP.<anonymous> (net.js:673)
$onExtensionRuntimeError @ mainThreadExtensionService.ts:64
_doInvokeHandler @ rpcProtocol.ts:472
_invokeHandler @ rpcProtocol.ts:457
_receiveRequest @ rpcProtocol.ts:373
_receiveOneMessage @ rpcProtocol.ts:295
(anonymous) @ rpcProtocol.ts:160
fire @ event.ts:577
fire @ ipc.net.ts:513
_receiveMessage @ ipc.net.ts:871
(anonymous) @ ipc.net.ts:710
fire @ event.ts:577
acceptChunk @ ipc.net.ts:286
(anonymous) @ ipc.net.ts:247
(anonymous) @ browserSocketFactory.ts:197
fire @ event.ts:577
E._fileReader.onload @ browserSocketFactory.ts:81
load (async)
E @ browserSocketFactory.ts:77
create @ browserSocketFactory.ts:181
connect @ browserSocketFactory.ts:243
a @ remoteAgentConnection.ts:191
n @ remoteAgentConnection.ts:232
s @ remoteAgentConnection.ts:309
f @ remoteAgentConnection.ts:351
m @ remoteAgentConnection.ts:421
processTicksAndRejections @ internal/process/task_queues.js:93
async function (async)
m @ remoteAgentConnection.ts:420
(anonymous) @ remoteExtensionHost.ts:129
processTicksAndRejections @ internal/process/task_queues.js:93
Promise.then (async)
start @ remoteExtensionHost.ts:105
Cr @ extensionHostManager.ts:95
_createInstance @ instantiationService.ts:110
createInstance @ instantiationService.ts:76
i @ extensionHostManager.ts:56
(anonymous) @ abstractExtensionService.ts:589
_startExtensionHosts @ abstractExtensionService.ts:588
_initialize @ abstractExtensionService.ts:492
(anonymous) @ extensionService.ts:110
requestIdleCallback (async)
e.runWhenIdle @ async.ts:925
(anonymous) @ extensionService.ts:109
Promise.then (async)
cl @ extensionService.ts:107
_createInstance @ instantiationService.ts:110
_createServiceInstance @ instantiationService.ts:230
_createServiceInstanceWithOwner @ instantiationService.ts:219
_createAndCacheServiceInstance @ instantiationService.ts:208
_safeCreateAndCacheServiceInstance @ instantiationService.ts:151
_getOrCreateServiceInstance @ instantiationService.ts:135
get @ instantiationService.ts:54
initLayout @ layout.ts:257
(anonymous) @ workbench.ts:141
invokeFunction @ instantiationService.ts:61
startup @ workbench.ts:134
open @ shared.desktop.main.ts:112
async function (async)
open @ shared.desktop.main.ts:103
w @ desktop.main.ts:40
m.load.configureDeveloperSettings @ workbench.js:32
(anonymous) @ bootstrap-window.js:171
r._invokeFactory @ loader.js:1136
r.complete @ loader.js:1146
r._onModuleComplete @ loader.js:1772
r._onModuleComplete @ loader.js:1784
r._resolve @ loader.js:1732
r.defineModule @ loader.js:1375
p @ loader.js:1822
define @ loader.js:1900
(anonymous) @ tunnelServiceImpl.ts:35
(anonymous) @ fake:1

@oscarhermoso oscarhermoso added bug Issue identified by VS Code Team member as probable bug triage-needed Needs assignment to the proper sub-team labels Sep 12, 2021
@karthiknadig karthiknadig self-assigned this Sep 13, 2021
@karthiknadig karthiknadig added area-testing triage and removed triage-needed Needs assignment to the proper sub-team labels Sep 13, 2021
@oscarhermoso
Copy link
Author

Heyhey, I attempted to reproduce the issue in an isolated repo. It's not exactly the same error, but it seems very related give that the project has been set up in a similar way. Hopefully this helps @karthiknadig. Thanks again 🙂

[[object Object]]Maximum call stack size exceeded
$onExtensionRuntimeError @ workbench.desktop.main.js:1992

https://github.com/oscarhermoso/vscode-unittest-failure

@karthiknadig
Copy link
Member

@karthiknadig
Copy link
Member

Locally it seems to work for the vscode-unittest-failure repo. But I am not sure the other one was the same issue.

@karthiknadig karthiknadig added the verified Verification succeeded label Sep 24, 2021
@oscarhermoso
Copy link
Author

oscarhermoso commented Sep 25, 2021

Hey @karthiknadig, thank you for resolving the issue with my isolated repo.

With the original ticket, turns out the tests that were being skipped didn't include django.setup() in the test file. Resolved the problem by following advice in this open issue #73

I also found another issue with the user settings.json in devcontainers and raised a separate ticket here: #17523

Thanks again for all the help.

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Dec 2, 2021
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
area-testing bug Issue identified by VS Code Team member as probable bug verified Verification succeeded
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants