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
Hello,
When I trying to cf blue-green-deploy --delete-old-apps -f manifest-dev.yml, this error popup.
Deleting app <app name> in org <org name> / space <space name> as <user>...
Could not delete old app version - Server error, status code: 502, error code: 150009, message: Deletion of app <app name-old> failed because one or more associated resources could not be deleted.
An operation for the service binding between app <app name-old> and service instance <service binding> is in progress.
Here is the source code where the error raised:
//cloud_controller_ng/app/actions/mixins/bindings_delete.rbdefdelete_bindings(bindings,user_audit_info:)type=nilbinding_delete_action=nilbindings.each_with_object([])do |binding,errors|
type ||= DeleteServiceBindingFactory.type_of(binding)binding_delete_action ||= DeleteServiceBindingFactory.action(type,user_audit_info)result=binding_delete_action.delete(binding)unlessresult[:finished]polling_job=DeleteBindingJob.new(type,binding.guid,user_audit_info:)Jobs::Enqueuer.new(polling_job,queue: Jobs::Queues.generic).enqueue_pollableunbinding_operation_in_progress!(binding)endrescueStandardError=>eerrors << eendend//cloud_controller_ng/app/actions/app_delete.rbdefunbinding_operation_in_progress!(binding)raiseAsyncBindingDeletionsTriggered.new("An operation for the service binding between app #{binding.app.name} and service instance #{binding.service_instance.name} is in progress.")end
I think you should treat AsyncBindingDeletionsTriggered Error in a different way with others, cause this process is still on going. And this unbinding operation is successful on delay.
Thanks
Xuelong Bai
The text was updated successfully, but these errors were encountered:
Hello,
When I trying to cf blue-green-deploy --delete-old-apps -f manifest-dev.yml, this error popup.
Here is the source code where the error raised:
I think you should treat AsyncBindingDeletionsTriggered Error in a different way with others, cause this process is still on going. And this unbinding operation is successful on delay.
Thanks
Xuelong Bai
The text was updated successfully, but these errors were encountered: