diff --git a/broker.go b/broker.go index d0b8509..e165fd9 100644 --- a/broker.go +++ b/broker.go @@ -214,6 +214,9 @@ func (b *DeployerAccountBroker) Unbind( case userAccountGUID: user, err := b.uaaClient.GetUser(bindingID) if err != nil { + if strings.Contains(err.Error(), "got 0") { + return nil + } return err }