Hello Roberto,

with bigger timeout I'am getting much less so errors (but still get)

        read, write, exc = m.fdset()
        if read:
            yield uwsgi.wait_fd_read(read[0], 1)
        elif write:
            yield uwsgi.wait_fd_write(write[0], 1)

so if I'll change it to

        read, write, exc = m.fdset()
        if read:
            yield uwsgi.wait_fd_read(read[0], 10)
        elif write:
            yield uwsgi.wait_fd_write(write[0], 10)

I will get much less so errors

_______________________________________________
uWSGI mailing list
[email protected]
http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi

Reply via email to