Added resources to the platform description, fixed link in querytable for the init_ke...
[myslice.git] / manifold / manifoldproxy.py
index 99e7b0a..debd1f7 100644 (file)
@@ -14,11 +14,7 @@ from manifold.util.log          import Log
 from myslice.config             import Config
 
 debug=False
-debug=True
-
-# add artificial delay in s
-debug_spin=0
-#debug_spin=1
+#debug=True
 
 # pretend the server only returns - empty lists to 'get' requests - this is to mimick 
 # misconfigurations or expired credentials or similar corner case situations
@@ -59,6 +55,7 @@ with the query passed using POST"""
             admin_user, admin_password = Config().manifold_admin_user_password()
             manifold_api_session_auth = {'AuthMethod': 'password', 'Username': admin_user, 'AuthString': admin_password}
         else:
+            print request.session['manifold']
             manifold_api_session_auth = request.session['manifold']['auth']
 
         if debug_empty and manifold_query.action.lower()=='get':
@@ -81,12 +78,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: