Klein defaults to the twisted http timeout of 60 seconds. But in twisted web Site setup you can define a timeout parameter to change this. e.g. factory = Site(root, timeout=300) I can't see any option to add a parameter in Klein to change this. Is there no option for this or have I just missed the obvious setup point. Thanks for any info. -- *John Aherne* *www.rocs.co.uk <http://www.rocs.co.uk>* 020 7223 7567
Hi John, You can accomplish what you're after by wrapping your Klein instance in Site yourself --- .run() is just a shortcut that does this (plus initialize logging). Call .resource() to get a reource to use as root in the snippet you posted. https://github.com/twisted/klein/blob/86e34a2ea0f26fc7710851912707ab937d0df3... ---Tom On March 3, 2019 2:30:16 AM PST, John Aherne <johnaherne@rocs.co.uk> wrote:
Klein defaults to the twisted http timeout of 60 seconds.
But in twisted web Site setup you can define a timeout parameter to change this. e.g.
factory = Site(root, timeout=300)
I can't see any option to add a parameter in Klein to change this.
Is there no option for this or have I just missed the obvious setup point.
Thanks for any info.
-- *John Aherne*
*www.rocs.co.uk <http://www.rocs.co.uk>* 020 7223 7567
Thanks for the info. I've taken a look and can't quite see what I need to do. I'll have to take a closer look a bit later and see what I come up with. John On Mon, Mar 4, 2019 at 11:25 PM Tom Most <twm@freecog.net> wrote:
Hi John,
You can accomplish what you're after by wrapping your Klein instance in Site yourself --- .run() is just a shortcut that does this (plus initialize logging). Call .resource() to get a reource to use as root in the snippet you posted.
https://github.com/twisted/klein/blob/86e34a2ea0f26fc7710851912707ab937d0df3...
---Tom
On March 3, 2019 2:30:16 AM PST, John Aherne <johnaherne@rocs.co.uk> wrote:
Klein defaults to the twisted http timeout of 60 seconds.
But in twisted web Site setup you can define a timeout parameter to change this. e.g.
factory = Site(root, timeout=300)
I can't see any option to add a parameter in Klein to change this.
Is there no option for this or have I just missed the obvious setup point.
Thanks for any info.
-- *John Aherne*
*www.rocs.co.uk <http://www.rocs.co.uk>* 020 7223 7567
_______________________________________________ Twisted-web mailing list Twisted-web@twistedmatrix.com https://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-web
-- *John Aherne* *www.rocs.co.uk <http://www.rocs.co.uk>* 020 7223 7567
participants (2)
-
John Aherne
-
Tom Most