From 64fd52354c8c4f1cdb4a9a9fb66e22cec6a8be95 Mon Sep 17 00:00:00 2001 From: benoitc Date: Sun, 1 Jun 2014 21:59:50 +0200 Subject: [PATCH] fix comment in timeout example. --- examples/timeout.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/timeout.py b/examples/timeout.py index cf268c35..ab9bf4dd 100644 --- a/examples/timeout.py +++ b/examples/timeout.py @@ -8,7 +8,8 @@ import time def app(environ, start_response): - """Application which cooperatively pauses 10 seconds before responding""" + """Application which pauses 35 seconds before responding. the worker + will timeout in default case.""" data = b'Hello, World!\n' status = '200 OK' response_headers = [