Bug 1124796

Summary: creating template fails on py-sdk due to "TypeError: export()"
Product: [Retired] oVirt Reporter: Ori Gofen <ogofen>
Component: ovirt-engine-sdkAssignee: Juan Hernández <juan.hernandez>
Status: CLOSED DUPLICATE QA Contact: Pavel Stehlik <pstehlik>
Severity: urgent Docs Contact:
Priority: urgent    
Version: 3.5CC: acanan, acathrow, bugs, ecohen, gklein, iheim, michal.skrivanek, yeylon
Target Milestone: ---Keywords: AutomationBlocker, Regression
Target Release: 3.5.0   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard: virt
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2014-08-12 07:16:42 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: Virt RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On:    
Bug Blocks: 1073943    

Description Ori Gofen 2014-07-30 10:42:44 UTC
Description of problem:
please view BZ #1124795 (probably the same bug but i have separated them to be sure)

creating template fails on py-sdk when commencing :

>>> api.templates.add(params.Template(name='wrong',vm=api.vms.list()[0]))
Traceback (most recent call last):
  File "<input>", line 1, in <module>
  File "/usr/lib/python2.6/site-packages/ovirtsdk/infrastructure/brokers.py", line 17892, in add
    body=ParseHelper.toXml(template),
  File "/usr/lib/python2.6/site-packages/ovirtsdk/utils/parsehelper.py", line 74, in toXml
    entity.export(output, 0, name_=ParseHelper.getXmlTypeInstance(type_name))
  File "/usr/lib/python2.6/site-packages/ovirtsdk/xml/params.py", line 16807, in export
    self.exportChildren(outfile, level + 1, namespace_, name_, pretty_print=pretty_print)
  File "/usr/lib/python2.6/site-packages/ovirtsdk/xml/params.py", line 16825, in exportChildren
    self.vm.export(outfile, level, namespace_, name_='vm', pretty_print=pretty_print)
TypeError: export() takes at most 3 non-keyword arguments (4 given)

if trying instead:

>>> api.templates.add(params.Template(name='wrong',vm=params.VM(name='vm__0')))
<ovirtsdk.infrastructure.brokers.Template object at 0x28d7c50>

it passes

Version-Release number of selected component (if applicable):
beta.2

How reproducible:
100%

Steps to Reproduce:
see description

Actual results:
operation of creating template fails thus breaking all of my scripts

Expected results:
operation should be successful 

Additional info:

Comment 1 Michal Skrivanek 2014-08-12 07:16:42 UTC
as identified by Ravi, this is the same cause

*** This bug has been marked as a duplicate of bug 1122546 ***