After upgrading from socket.io 1.3.3, I made sure socket.io connected to flash socket.
socketObj = io('http://localhost:9090', {'transports' : ['flashsocket'],'reconnection delay': 20});
Console messages appear as below:
socket.io.js:199 connect attempt will timeout after 20000
socket.io.js:324 attempting reconnect
socket.io.js:199 connect attempt will timeout after 20000
socket.io.js:324 attempting reconnect
socket.io.js:199 connect attempt will timeout after 20000
socket.io.js:324 attempting reconnect
socket.io.js:199 connect attempt will timeout after 20000
socket.io.js:324 attempting reconnect
socket.io.js:199 connect attempt will timeout after 20000
socket.io.js:324 attempting reconnect
I am using Chrome version 43.0.2357.125
. Should I be concerned about browser compatibility or is it a potential issue with socket.io? Or perhaps there's a misconfiguration on my end?