Hello,
I can not figure out how to setup timeout (request processing takes to much 
time) and limit for output data.

I am starting server like this.


 serve(application,
        host='0.0.0.0',
        port=port,
        cleanup_interval=2,
        channel_timeout=4
      )


I am using Werkzeug Request and Response objects and jsonrpcserver dispatch 
method to delegate request to my processing method. In this method I have

time.sleep(timeToSleep)
 

But even I setup timeToSleep much bigger (120s) than channel_timeout (4s) I 
can seen that the request is always processed and return to client?


For response size limit I can not even find suitable setting parameter.


It would be nice if in both cases (timeout, maxsize reponse) server will be 
able to stop/cancel/kill the corresponding process/thread/call and return 
some meaningful response.


Thanks for any help.

-- 
You received this message because you are subscribed to the Google Groups 
"pylons-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/pylons-discuss/88812140-6abf-4403-af8c-d2639418a543%40googlegroups.com.

Reply via email to