Add "tags" to _update_helper
Tags are currently missing. Which causes reset tags to default value None Change-Id: I58983cea84aacb456c1eb05787268d51502e85a3
This commit is contained in:
committed by
Adit Sarfaty
parent
70f8b4809c
commit
1ef29dede7
@@ -672,6 +672,10 @@ class NsxPolicyLoadBalancerVirtualServerAPI(NsxPolicyResourceBase):
|
||||
if kwargs.get(k) == IGNORE and vs_data.get(k):
|
||||
kwargs[k] = vs_data[k]
|
||||
|
||||
if (kwargs.get('tags', IGNORE) == IGNORE and
|
||||
vs_data.get('tags')):
|
||||
kwargs['tags'] = vs_data['tags']
|
||||
|
||||
self._update(
|
||||
virtual_server_id=virtual_server_id,
|
||||
tenant=tenant,
|
||||
|
||||
Reference in New Issue
Block a user