You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to "view all" nodes in the VS Code extension, VS code reports an error in the Flyde extension.
Clicking this button:
Leads to this error message:
This is the entry from the log:
2024-05-21 11:36:58.383 [error] TypeError: Cannot read properties of undefined (reading 'executionId')
at Socket.<anonymous> (/Users/moi/.vscode/extensions/flyde.flyde-vscode-0.62.0/node_modules/@flyde/remote-debugger/dist/setup-server.js:138:41)
at Socket.emit (node:events:517:28)
at Socket.emit (node:domain:489:12)
at Socket.emitUntyped (/Users/moi/.vscode/extensions/flyde.flyde-vscode-0.62.0/node_modules/socket.io/dist/typed-events.js:69:22)
at /Users/moi/.vscode/extensions/flyde.flyde-vscode-0.62.0/node_modules/socket.io/dist/socket.js:704:39
at processTicksAndRejections (node:internal/process/task_queues:77:11)
This is the line in the code that is the culprit of the problem:
// setup-server.js, line 138constexecutionId=data[0].executionId;// this assumes all events in the batch are from the same execution. TODO - check this assumption
Looks like this assumption is invalid 😉
The text was updated successfully, but these errors were encountered:
When trying to "view all" nodes in the VS Code extension, VS code reports an error in the Flyde extension.
Clicking this button:
Leads to this error message:
This is the entry from the log:
This is the line in the code that is the culprit of the problem:
Looks like this assumption is invalid 😉
The text was updated successfully, but these errors were encountered: