Check template_id attr exists within template
This commit is contained in:
parent
85b251d2e6
commit
6a5a5ed160
1 changed files with 7 additions and 6 deletions
|
@ -138,6 +138,7 @@ class VirtualMachineSerializer(serializers.Serializer):
|
||||||
|
|
||||||
def get_configuration(self, obj):
|
def get_configuration(self, obj):
|
||||||
if hasattr(obj, 'template'):
|
if hasattr(obj, 'template'):
|
||||||
|
if hasattr(obj, 'template.template_id'):
|
||||||
template_id = obj.template.template_id
|
template_id = obj.template.template_id
|
||||||
template = OpenNebulaManager().get_template(template_id)
|
template = OpenNebulaManager().get_template(template_id)
|
||||||
if template.name.startswith('public-'):
|
if template.name.startswith('public-'):
|
||||||
|
|
Loading…
Reference in a new issue