Merge "Add "tags" to _update_helper"

This commit is contained in:
Zuul 2019-04-21 04:45:31 +00:00 committed by Gerrit Code Review
commit 5875f0d48f

View File

@ -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,