> +import static
> org.apache.jclouds.profitbricks.rest.config.ProfitBricksComputeProperties.POLL_TIMEOUT;
> +import org.apache.jclouds.profitbricks.rest.domain.ProvisioningState;
> +import org.apache.jclouds.profitbricks.rest.domain.Server;
> +import com.google.inject.AbstractModule;
> +import static
> org.apache.jclouds.profitbricks.rest.config.ProfitBricksComputeProperties.POLL_MAX_PERIOD;
> +import static com.google.common.base.Preconditions.checkNotNull;
> +import static
> org.apache.jclouds.profitbricks.rest.config.ProfitBricksComputeProperties.TIMEOUT_NODE_RUNNING;
> +import static
> org.apache.jclouds.profitbricks.rest.config.ProfitBricksComputeProperties.TIMEOUT_NODE_SUSPENDED;
> +import static org.jclouds.util.Predicates2.retry;
> +
> +public class ApiPredicatesModule extends AbstractModule {
> +
> + @Override
> + protected void configure() {
> +
> +
> bind(ImplicitLocationSupplier.class).to(OnlyLocationOrFirstZone.class).in(Singleton.class);
This is only used with the ComputeService implementation. Please remove it.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/227/files#r51543502