nacx commented on a change in pull request #30: Checks provisioning state in 
Rule resource instead of Group
URL: https://github.com/apache/jclouds/pull/30#discussion_r284087752
 
 

 ##########
 File path: 
providers/azurecompute-arm/src/main/java/org/jclouds/azurecompute/arm/compute/extensions/AzureComputeSecurityGroupExtension.java
 ##########
 @@ -295,9 +295,10 @@ public boolean apply(NetworkSecurityRule input) {
       for (NetworkSecurityRule matchingRule : rules) {
          logger.debug(">> deleting network security rule %s from %s...", 
matchingRule.name(), group.getName());
          ruleApi.delete(matchingRule.name());
-         checkState(
-               
securityGroupAvailable.create(resourceGroupAndName.resourceGroup()).apply(networkSecurityGroup.name()),
-               "Security group was not updated in the configured timeout");
+         URI uri = 
api.getNetworkSecurityRuleApi(resourceGroupAndName.resourceGroup(), 
networkSecurityGroup.name()).delete(resourceGroupAndName.name());
+         if (uri != null) {
+            resourceDeleted.apply(uri);
 
 Review comment:
   Let's capture the result and verify with `checkState` to keep the current 
behavior and feedback.

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to