Comment 3 for bug 1502455

Revision history for this message
PLNech (f-ne-b) wrote :

After more investigation on the affected system,
I was able to pinpoint the issue to socketio's transports.py and handler.py,
which both contained the following line:

            ("Access-Control-Max-Age", 3600),

changing it to

            ("Access-Control-Max-Age", "3600"),

successfully restored ajenti panel's functionality.

Do you think this should be reported to socketio/gevent maintainers?