From 347e4306ff6b73204da66dc81fe046a8195e8a43 Mon Sep 17 00:00:00 2001 From: Swagnik Dutta Date: Fri, 14 Jul 2023 16:40:49 +0530 Subject: [PATCH] fix(apply): corrects the guid_functor for network --- riocli/apply/resolver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/riocli/apply/resolver.py b/riocli/apply/resolver.py index 2371ef2f..79fb9772 100644 --- a/riocli/apply/resolver.py +++ b/riocli/apply/resolver.py @@ -125,7 +125,7 @@ def _guid_functor(self, kind): "staticroute": lambda x: munchify(x)['guid'], "build": lambda x: munchify(x)['guid'], "deployment": lambda x: munchify(x)['deploymentId'], - "network": lambda x: munchify(x)['guid'], + "network": lambda x: munchify(x).guid, # This is only temporarily like this "disk": lambda x: munchify(x)['internalDeploymentGUID'], "device": lambda x: munchify(x)['uuid'],