use registry.get_gids() for now. Switch to registry.GetGids() when PLC upgrades...
authorTony Mack <tmack@paris.CS.Princeton.EDU>
Wed, 25 Aug 2010 20:38:58 +0000 (16:38 -0400)
committerTony Mack <tmack@paris.CS.Princeton.EDU>
Wed, 25 Aug 2010 20:38:58 +0000 (16:38 -0400)
plugins/sfagids.py

index fc16c56..28d9aa7 100644 (file)
@@ -73,7 +73,8 @@ def install_gids(api, slivers):
     # get current gids from registry
     cred = api.getCredential()
     registry = api.get_registry()
-    records = registry.GetGids(cred, hrns)
+    #records = registry.GetGids(cred, hrns)
+    records = registry.get_gids(cred, hrns)
     for record in records:
         # skip if this isnt a slice record 
         if not record['type'] == 'slice':