Am 19. Oktober 2011 11:31 schrieb Iustin Pop <ius...@google.com>: > On Wed, Oct 19, 2011 at 07:45:39AM +0200, Michael Hanselmann wrote: >> If an instance had actually a missing disk, the type check would fail. >> --- a/lib/cmdlib.py >> +++ b/lib/cmdlib.py >> for key, inst in nv_dict.iteritems(): >> - res_missing.setdefault(inst, []).append(key) >> + res_missing.setdefault(inst, []).append(list(key)) > > Hmm, doesn't this need changes also in lib/client/gnt_cluster.py?
No, this is just converting from tuple to list for the check (it's a list after the JSON cycle anyway). Michael