Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
2.0.1
-
None
Description
When executing the following actions with SecurityGroupExtension:
- createSecurityGroup("my-name")
- // delete the security group externally
- removeSecurityGroup("my-name")
- createSecurityGroup("my-name") // i.e. recreate
- addIpPermission("my-name", permission)
The last couple of actions will fail because no second create ever takes place on the cloud due to local caching of the group. Even though it's removed (which should invalidate the local cache) and then recreated again.