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
OK, I've found the issue. If you have USE_THOUSAND_SEPARATOR = True in your settings, the port number set in DJANGO_SOCKETIO_PORT in the runserver_socket.py parses the port number as 9,000, not 9000, giving an incorrect port value.
Getting this error when trying to view a chat room created from the chat app example. It's happening on line 395 of socket.io.js:
this.socket = new WebSocket(this._prepareUrl());
the url returned is a string which looks like:"ws://127.0.0.1:9/socket.io/websocket"
Running Django 1.4.18, django-socketio 0.3.9.
Is the port number wrong here? Shouldn't it be 9000?
Starting the socketIOserver through the command: sudo python manage.py runserver_socketio
The text was updated successfully, but these errors were encountered: