From 0ffeebf546fe6395a32621b07d7239d88b147b07 Mon Sep 17 00:00:00 2001 From: Alexander Saprykin Date: Tue, 21 Jun 2016 15:37:20 +0200 Subject: [PATCH] Fix missing parenthesis in _getSubnetworks call Calling describe() method for ExistingNeutronNetwork failed with exception: Access to uninitialized property "_getSubnetworks" in class "io.murano.resources.ExistingNeutronNetwork" is forbidden. Change-Id: I81da23c2ac720af4ec690c4985434c331f6bfe2c Closes-Bug: #1594821 (cherry picked from commit d17c3f644ae97b508c8a848b13bc35572fabb993) --- meta/io.murano/Classes/resources/ExistingNeutronNetwork.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/io.murano/Classes/resources/ExistingNeutronNetwork.yaml b/meta/io.murano/Classes/resources/ExistingNeutronNetwork.yaml index 827b9f749..a7939b87e 100644 --- a/meta/io.murano/Classes/resources/ExistingNeutronNetwork.yaml +++ b/meta/io.murano/Classes/resources/ExistingNeutronNetwork.yaml @@ -145,7 +145,7 @@ Workflow: describe: Body: - $.deploy() - - $subnet: $._getSubnetworks.where( + - $subnet: $._getSubnetworks().where( $.network_id = $this._internalNetworkId).first() - Return: provider: Neutron