removed 'nodes' key from SliceRecord.fields
authorTony Mack <tmack@cs.princeton.edu>
Tue, 9 Jun 2009 13:50:45 +0000 (13:50 +0000)
committerTony Mack <tmack@cs.princeton.edu>
Tue, 9 Jun 2009 13:50:45 +0000 (13:50 +0000)
geni/util/record.py

index e237fce..ed46ef4 100644 (file)
@@ -358,13 +358,13 @@ class SliceRecord(GeniRecord):
         'url': Parameter(str, 'Slice url'),
         'expires': Parameter(int, 'Date and time this slice exipres'),
         'persons': Parameter([str], 'List of users for this slice'),
-        'nodes': Parameter([str], 'List of nodes this slice is instantiated on'),
         'description': Parameter([str], 'Description of this slice'), 
         'date_created': Parameter(int, 'Date and time this record was created'),
         }
     fields.update(GeniRecord.fields)
 
     internal_fields = {
+        'nodes': Parameter([str], 'List of nodes this slice is instantiated on'),
         'site': Parameter(str, 'Site this slice belongs to'),
         'max_nodes': Parameter(int, 'Maximum number of nodes this slice is allowed on')
         }