X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=manifold%2Fmanifoldproxy.py;h=f850fe91b01ab1beb2a72dd8b2cdb523f8a0eb6c;hb=20e712f9703d8b2eaf226fdf8807315edcea6a9a;hp=3577fe5aed64ac8ea6419858b0d9b5d2badce485;hpb=f8a556326c2a66f26f8b2114c0a6d03985b671c0;p=unfold.git diff --git a/manifold/manifoldproxy.py b/manifold/manifoldproxy.py index 3577fe5a..f850fe91 100644 --- a/manifold/manifoldproxy.py +++ b/manifold/manifoldproxy.py @@ -11,15 +11,11 @@ from manifold.core.result_value import ResultValue from manifold.manifoldapi import ManifoldAPI from manifold.manifoldresult import ManifoldException from manifold.util.log import Log -from myslice.config import Config +from myslice.configengine import ConfigEngine 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 @@ -56,7 +52,7 @@ with the query passed using POST""" # We allow some requests to use the ADMIN user account if (manifold_query.get_from() == 'local:user' and manifold_query.get_action() == 'create') \ or (manifold_query.get_from() == 'local:platform' and manifold_query.get_action() == 'get'): - admin_user, admin_password = Config().manifold_admin_user_password() + admin_user, admin_password = ConfigEngine().manifold_admin_user_password() manifold_api_session_auth = {'AuthMethod': 'password', 'Username': admin_user, 'AuthString': admin_password} else: manifold_api_session_auth = request.session['manifold']['auth'] @@ -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: