From f1222089337321144a26bfaeb6e7d7f125f8040f Mon Sep 17 00:00:00 2001
From: Dimitris Aragiorgis <dimara@grnet.gr>
Date: Thu, 20 Dec 2012 16:16:39 +0200
Subject: [PATCH] Fix iallocator for nodegroups with no tags
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

_ComputeNodeGroupData() raises error if a group has no tags
when list(gdata.tags) is invoked. Use β€œgdata.GetTags()” instead.

Signed-off-by: Dimitris Aragiorgis <dimara@grnet.gr>
Signed-off-by: Michael Hanselmann <hansmi@google.com>
Reviewed-by: Michael Hanselmann <hansmi@google.com>
---
 lib/masterd/iallocator.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/masterd/iallocator.py b/lib/masterd/iallocator.py
index 45b0ba1b5..b6a8afdc6 100644
--- a/lib/masterd/iallocator.py
+++ b/lib/masterd/iallocator.py
@@ -458,7 +458,7 @@ class IAllocator(object):
       "name": gdata.name,
       "alloc_policy": gdata.alloc_policy,
       "ipolicy": gmi.CalculateGroupIPolicy(cluster, gdata),
-      "tags": list(gdata.tags),
+      "tags": list(gdata.GetTags()),
       })
       for guuid, gdata in cfg.GetAllNodeGroupsInfo().items())
 
-- 
GitLab