Merge "Add "tags" to _update_helper"
This commit is contained in:
commit
5875f0d48f
@ -672,6 +672,10 @@ class NsxPolicyLoadBalancerVirtualServerAPI(NsxPolicyResourceBase):
|
|||||||
if kwargs.get(k) == IGNORE and vs_data.get(k):
|
if kwargs.get(k) == IGNORE and vs_data.get(k):
|
||||||
kwargs[k] = vs_data[k]
|
kwargs[k] = vs_data[k]
|
||||||
|
|
||||||
|
if (kwargs.get('tags', IGNORE) == IGNORE and
|
||||||
|
vs_data.get('tags')):
|
||||||
|
kwargs['tags'] = vs_data['tags']
|
||||||
|
|
||||||
self._update(
|
self._update(
|
||||||
virtual_server_id=virtual_server_id,
|
virtual_server_id=virtual_server_id,
|
||||||
tenant=tenant,
|
tenant=tenant,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user