From: Thierry Parmentelat Date: Sat, 14 Dec 2013 13:51:48 +0000 (+0100) Subject: remove unused debug feature X-Git-Tag: myslice-0.3-0~81 X-Git-Url: http://git.onelab.eu/?p=myslice.git;a=commitdiff_plain;h=bd8ad6aafd20775cf6884faa98cadf30839cc032 remove unused debug feature --- diff --git a/manifold/manifoldproxy.py b/manifold/manifoldproxy.py index 3577fe5a..d43a3cd4 100644 --- a/manifold/manifoldproxy.py +++ b/manifold/manifoldproxy.py @@ -16,10 +16,6 @@ from myslice.config import Config debug=False #debug=True -# add artificial delay in s -debug_spin=0 -#debug_spin=1 - # pretend the server only returns - empty lists to 'get' requests - this is to mimick # misconfigurations or expired credentials or similar corner case situations debug_empty=False @@ -81,12 +77,6 @@ with the query passed using POST""" json_answer=json.dumps(result) - # this is an artificial delay added for debugging purposes only - if debug_spin>0: - print "Adding additional artificial delay",debug_spin - import time - time.sleep(debug_spin) - return HttpResponse (json_answer, mimetype="application/json") except Exception,e: