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
There are two ports that need to be recorded and reported to start the web and compute servers. The http:localhost:{port} that is running the webserver hosting the paraviewglance webpage and the ws:{port} that hosts the paraview server. Via lines 59 and 60, the program reports:
C:\src\ParaView-Glance-Py\server>python server.py --port 8181 --no-browser
Namespace(host='localhost', no_browser=True, port='8181')
If the browser doesn't open, navigate to: http://localhost:8181/?wsServer=ws://localhost:8181/ws
wslink: Starting factory
CRITICAL:twisted:wslink: Starting factory
This is wrong. The first instance of {port} should be 9999, in this case. The 8181 port is correct.
Hope this helps,
s
The text was updated successfully, but these errors were encountered:
Lines 59 and 60 of server.py are incorrect:
paraview-glance-py/server/server.py
Line 59 in 26b9a10
There are two ports that need to be recorded and reported to start the web and compute servers. The http:localhost:{port} that is running the webserver hosting the paraviewglance webpage and the ws:{port} that hosts the paraview server. Via lines 59 and 60, the program reports:
This is wrong. The first instance of {port} should be 9999, in this case. The 8181 port is correct.
Hope this helps,
s
The text was updated successfully, but these errors were encountered: