drop pdb
authorSapan Bhatia <sapanb@cs.princeton.edu>
Fri, 17 Jul 2009 18:18:06 +0000 (18:18 +0000)
committerSapan Bhatia <sapanb@cs.princeton.edu>
Fri, 17 Jul 2009 18:18:06 +0000 (18:18 +0000)
sfa/rspecs/aggregates/rspec_manager_max.py

index 9665451..15a6cb6 100644 (file)
@@ -70,7 +70,6 @@ def get_interface_map():
 def allocations_to_rspec(allocations):
     rspec = xml.dom.minidom.parse(SFA_MAX_DEFAULT_RSPEC)
     req = rspec.firstChild.appendChild(rspec.createElement("request"))
-    pdb.set_trace()
     for (iname,ip) in allocations:
         ifspec = req.appendChild(rspec.createElement("ifspec"))
         ifspec.setAttribute("name","tns:"+iname)
@@ -282,7 +281,6 @@ def create_slice(api, hrn, rspec_xml):
     current_interfaces = map(lambda(elt):elt[0], current_allocations)
     current_hrn_interfaces = map(lambda(elt):elt[0], current_hrn_allocations)
 
-    pdb.set_trace()
     for a in requested_interfaces:
         if (a not in current_hrn_interfaces and a in current_interfaces):
             raise GeniOutOfResource(a)