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
The initialization of my theia custom electron application fails on Windows when running theia via UNC path. ( --no-sandbox option is presented)
From the Network tab of DevTools the following request is refused:
Request URL: http://<server_name_of_UNC_paht>/socket.io/?EIO=4&transport=polling&t=OvSpqm9
Although, from the logs, it is listening to http://127.0.0.1:<port_number> .
The same request that is addressed to localhost returns the response successfully:
$ curl http://127.0.0.1/:<port_number>/socket.io/?EIO=4&transport=polling
0{"sid":"cx7PqAU7lTT64JufAAAB","upgrades":["websocket"],"pingInterval":30000,"pingTimeout":60000,"maxPayload":100000000}
Steps to Reproduce:
I use the following configuration to build/package my custom theia application:
Bug Description:
The initialization of my theia custom electron application fails on Windows when running theia via UNC path. ( --no-sandbox option is presented)
From the Network tab of DevTools the following request is refused:
Request URL: http://<server_name_of_UNC_paht>/socket.io/?EIO=4&transport=polling&t=OvSpqm9
Although, from the logs, it is listening to http://127.0.0.1:<port_number> .
The same request that is addressed to localhost returns the response successfully:
$ curl http://127.0.0.1/:<port_number>/socket.io/?EIO=4&transport=polling
0{"sid":"cx7PqAU7lTT64JufAAAB","upgrades":["websocket"],"pingInterval":30000,"pingTimeout":60000,"maxPayload":100000000}
Steps to Reproduce:
I use the following configuration to build/package my custom theia application:
package.json of electron-app
electron-builder.json
Steps to reproduce:
The front-end does not open successfully; it keeps sending the socket.io request (mentioned in the bug description) forever.
Additional Information
Don't see the same behavior on Linux.
The text was updated successfully, but these errors were encountered: