X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=manifold%2Fmanifoldproxy.py;h=f850fe91b01ab1beb2a72dd8b2cdb523f8a0eb6c;hb=20e712f9703d8b2eaf226fdf8807315edcea6a9a;hp=d43a3cd4e6b2fc39c52242b47c61b2914d77d40a;hpb=d9bbe0a36624c6fe558c05307964be1b3ed4e3b1;p=unfold.git diff --git a/manifold/manifoldproxy.py b/manifold/manifoldproxy.py index d43a3cd4..f850fe91 100644 --- a/manifold/manifoldproxy.py +++ b/manifold/manifoldproxy.py @@ -11,7 +11,7 @@ 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 @@ -52,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']