You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During unbinding, the broker will throw an exception if the user or bucket was somehow already deleted. This prevents the completion of the unbinding process and can cause applications to be in a stuck state.
During unbinding, the broker will throw an exception if the user or bucket was somehow already deleted. This prevents the completion of the unbinding process and can cause applications to be in a stuck state.
If the user or bucket of an application binding is already gone, the broker should simply skip that step in the unbinding process. Example ref:
https://github.com/thecodeteam/ecs-cf-service-broker/blob/master/src/main/java/com/emc/ecs/servicebroker/service/BucketBindingWorkflow.java#L96
i.e. either in deleteUser, or before the above line, we should check if the user exists, and skip the delete call in that case.
The text was updated successfully, but these errors were encountered: