From f704ea0f90df674ab25df563bfb6af726e98052b Mon Sep 17 00:00:00 2001 From: Tony Mack Date: Tue, 9 Jun 2009 13:50:45 +0000 Subject: [PATCH] removed 'nodes' key from SliceRecord.fields --- geni/util/record.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geni/util/record.py b/geni/util/record.py index e237fced..ed46ef41 100644 --- a/geni/util/record.py +++ b/geni/util/record.py @@ -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') } -- 2.47.0