Skip to content

Commit

Permalink
fix(apply): corrects the guid_functor for network
Browse files Browse the repository at this point in the history
  • Loading branch information
swagnikdutta authored and pallabpain committed Jul 18, 2023
1 parent df214e0 commit bbb5102
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion riocli/apply/resolver.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'],
Expand Down

0 comments on commit bbb5102

Please sign in to comment.