diff --git a/providers/hpcloud-compute/src/main/java/org/jclouds/hpcloud/compute/HPCloudComputeServiceAdapter.java b/providers/hpcloud-compute/src/main/java/org/jclouds/hpcloud/compute/HPCloudComputeServiceAdapter.java index c18b82b155..afb6a4b50e 100644 --- a/providers/hpcloud-compute/src/main/java/org/jclouds/hpcloud/compute/HPCloudComputeServiceAdapter.java +++ b/providers/hpcloud-compute/src/main/java/org/jclouds/hpcloud/compute/HPCloudComputeServiceAdapter.java @@ -23,6 +23,7 @@ import javax.inject.Inject; import org.jclouds.location.Region; import org.jclouds.openstack.nova.v2_0.NovaApi; import org.jclouds.openstack.nova.v2_0.compute.NovaComputeServiceAdapter; +import org.jclouds.openstack.nova.v2_0.compute.functions.CleanupServer; import org.jclouds.openstack.nova.v2_0.compute.functions.RemoveFloatingIpFromNodeAndDeallocate; import org.jclouds.openstack.nova.v2_0.domain.KeyPair; import org.jclouds.openstack.nova.v2_0.domain.regionscoped.ImageInRegion; @@ -37,8 +38,9 @@ public class HPCloudComputeServiceAdapter extends NovaComputeServiceAdapter { @Inject public HPCloudComputeServiceAdapter(NovaApi novaApi, @Region Supplier> regionIds, - RemoveFloatingIpFromNodeAndDeallocate removeFloatingIpFromNodeAndDeallocate, LoadingCache keyPairCache) { - super(novaApi, regionIds, removeFloatingIpFromNodeAndDeallocate, keyPairCache); + RemoveFloatingIpFromNodeAndDeallocate removeFloatingIpFromNodeAndDeallocate, + LoadingCache keyPairCache, CleanupServer cleanupServer) { + super(novaApi, regionIds, removeFloatingIpFromNodeAndDeallocate, keyPairCache, cleanupServer); } @Override