Skip to content

Commit

Permalink
fix(apply): fixes guid_functor for network
Browse files Browse the repository at this point in the history
  • Loading branch information
ankitrgadiya committed Nov 23, 2022
1 parent 39f19b6 commit 0831a0c
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 @@ -112,7 +112,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,
"disk": lambda x: munchify(x)['internalDeploymentGUID'], #This is only temporarity like this
"device": lambda x: munchify(x)['uuid']
}
Expand Down

0 comments on commit 0831a0c

Please sign in to comment.