Activity log for bug #1597457

Date Who What changed Old value New value Message
2016-06-29 17:54:28 Alexander Saprykin bug added bug
2016-06-29 17:55:03 Alexander Saprykin description MuranoPL engine doesn't parse correctly signature of __init__ method that is not defined in derived class. In case of inheritance, when Base class has __init__ method, but Derived class does not have __init__ method, attempt to create Derived class instance fails with exception: [TypeError]: __init__() takes exactly 2 arguments (1 given) Example: class Base(object): def __init__(self, this): self._owner = this.find_owner('io.murano.Environment') class Derived(object): pass Workaround: Define explicit method __init__ in derived class that calls parent's class __init__ method. MuranoPL engine doesn't parse correctly signature of __init__ method that is not defined in derived class. In case of inheritance, when Base class has __init__ method, but Derived class does not have __init__ method, attempt to create Derived class instance fails with exception: [TypeError]: __init__() takes exactly 2 arguments (1 given) Example: class Base(object):     def __init__(self, this):         self._owner = this.find_owner('io.murano.Environment') class Derived(Base):     pass Workaround: Define explicit method __init__ in derived class that calls parent's class __init__ method.
2016-06-29 18:52:43 OpenStack Infra murano: status New In Progress
2016-06-29 18:52:43 OpenStack Infra murano: assignee Stan Lagun (slagun)
2016-06-29 20:11:15 Valerii Kovalchuk murano: importance Undecided High
2016-06-29 20:11:18 Valerii Kovalchuk murano: milestone newton-2
2016-06-29 20:14:17 Valerii Kovalchuk tags muranopl
2016-07-05 08:38:37 OpenStack Infra murano: status In Progress Fix Released
2016-07-07 11:56:36 Valerii Kovalchuk nominated for series murano/mitaka
2016-07-07 11:56:36 Valerii Kovalchuk bug task added murano/mitaka
2016-07-07 11:56:36 Valerii Kovalchuk nominated for series murano/newton
2016-07-07 11:56:36 Valerii Kovalchuk bug task added murano/newton
2016-07-07 11:56:43 Valerii Kovalchuk murano/mitaka: importance Undecided High
2016-07-07 11:56:47 Valerii Kovalchuk murano/mitaka: milestone 2.0.x
2016-07-07 11:57:06 OpenStack Infra murano/mitaka: status New In Progress
2016-07-07 11:57:06 OpenStack Infra murano/mitaka: assignee Valerii Kovalchuk (vakovalchuk)
2016-07-12 14:52:30 OpenStack Infra murano/mitaka: status In Progress Fix Committed