diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 5efeab9..951d89d 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -4,3 +4,5 @@ - Attempt to decrease amount of superfluous API requests, however these calls are almost all inside of the client library. 2.0.2: - Support some legacy types. +2.0.3: + - Fixed issue with RETRY BAD REQUEST in preconfigure_nic diff --git a/cloudify_vcd/legacy/compute/tasks.py b/cloudify_vcd/legacy/compute/tasks.py index 07c1778..8e78e1d 100644 --- a/cloudify_vcd/legacy/compute/tasks.py +++ b/cloudify_vcd/legacy/compute/tasks.py @@ -194,9 +194,6 @@ def preconfigure_nic(vm_client, ctx, server, **kwargs): **kwargs) last_task = get_last_task(result) if not check_if_task_successful(resource, last_task): - port_ctx.target.instance.runtime_properties['__RETRY_BAD_' - 'REQUEST'] = \ - True raise OperationRetry('Pending for operation completion.') operation_name = ctx.operation.name.split('.')[-1] expose_props(operation_name, diff --git a/plugin.yaml b/plugin.yaml index d5f6e60..7e89bc0 100644 --- a/plugin.yaml +++ b/plugin.yaml @@ -3,7 +3,7 @@ plugins: vcd: &plugin_mapping executor: central_deployment_agent package_name: cloudify-vcloud-plugin - package_version: '2.0.2' + package_version: '2.0.3' # legacy vcloud: *plugin_mapping