Comment 4 for bug 1130601

Revision history for this message
Lianhao Lu (lianhao-lu) wrote :

Ah, the root cause is the evil "," in the following function NetPollster.make_vnic_counter():

resource_metadata['instance_type'] = \
            instance.flavor['id'] if instance.flavor else None,

The trailing ',' change it from a unicode type to tuple type.

However, the limitation Doug mentioned in comment #2 is still valid.