> + AtomicReference<Operation> operation = new > AtomicReference<Operation>(api.getFirewallApiForProject(userProject.get()) > + .delete(fw.getName())); > + > + retry(operationDonePredicate, operationCompleteCheckTimeout, > operationCompleteCheckInterval, > + MILLISECONDS).apply(operation); > + > + checkState(!operation.get().getHttpError().isPresent(), "Could not > delete firewall, operation failed" + operation); > + } > + > + AtomicReference<Operation> operation = new AtomicReference<Operation>( > + api.getNetworkApiForProject(userProject.get()).delete(id)); > + > + retry(operationDonePredicate, operationCompleteCheckTimeout, > operationCompleteCheckInterval, > + MILLISECONDS).apply(operation); > + > + checkState(!operation.get().getHttpError().isPresent(), "Could not > create network, operation failed" + operation);
Same question as above? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-labs-google/pull/5/files#r7379100
