Fanx, Graham.
I have tried - see below - it helped a little.
Concurrency Level: 1
Time taken for tests: 102.794 seconds
Complete requests: 1000
Failed requests: 242
(Connect: 0, Receive: 0, Length: 242, Exceptions: 0)
But the application I run is the same - so it shouldnt give any
errors.
def application(environ, start_response):
status = '200 OK'
output = 'Hello World!'
response_headers = [('Content-type', 'text/plain'),
('Content-Length', str(len(output)))]
start_response(status, response_headers)
return [output]
Running with concurrency level 10 for a static page from same server
gives no errors.
jayjay
--
You received this message because you are subscribed to the Google Groups
"modwsgi" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/modwsgi?hl=en.