diff options
author | Robert Brewer <fumanchu@aminus.org> | 2006-08-05 23:05:52 +0000 |
---|---|---|
committer | Robert Brewer <fumanchu@aminus.org> | 2006-08-05 23:05:52 +0000 |
commit | 18b33b51a0183605747f0a2b36e3b464897c01d5 (patch) | |
tree | fd03ad9627679849cc25265af81c934e03909370 /cherrypy/test/benchmark.py | |
parent | ac1aeb9f0c7b98fcff1786d1b6806b6c73db0331 (diff) | |
download | cherrypy-git-18b33b51a0183605747f0a2b36e3b464897c01d5.tar.gz |
Changed server.start to server.quickstart, and server.start_all to server.start.
Diffstat (limited to 'cherrypy/test/benchmark.py')
-rw-r--r-- | cherrypy/test/benchmark.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cherrypy/test/benchmark.py b/cherrypy/test/benchmark.py index fcfa664e..5800f85c 100644 --- a/cherrypy/test/benchmark.py +++ b/cherrypy/test/benchmark.py @@ -401,6 +401,6 @@ if __name__ == '__main__': cherrypy.server.request_class = NullRequest cherrypy.server.response_class = NullResponse - cherrypy.server.start() + cherrypy.server.quickstart() # This will block cherrypy.engine.start_with_callback(run) |