Package: python-socketio
Version: 0.3.6-2
Source: gevent-socketio
Headers should be string/unicode (python 2/3) and this is being violated
when Access-Control-Max-Age is set to 3600. It should be set to '3600'
(str) instead:
Talking about /usr/lib/python2.7/dist-packages/socketio/handler.py
- ("Access-Control-Max-Age", 3600),
+ ("Access-Control-Max-Age", str(3600)),
Are you willing to apply this upstream python-socketio patch?
https://github.com/abourget/gevent-socketio/issues/228
Thanks,
Frans van Berckel