Aggressively undeprecate legitimate method calls

This commit is contained in:
Samuel Cassiba 2018-02-12 08:04:51 -08:00
parent dea8e2d18e
commit 50b07b156a
1 changed files with 2 additions and 2 deletions

View File

@ -36,9 +36,9 @@ module OpenstackclientCookbook
action :delete do
project = new_resource.connection.projects.find { |p| p.name == new_resource.project_name }
if project
new_resource.project.destroy
project.destroy
else
log "Project with name: \"#{new_resource.project_name}\" doesn't exist"
log "Project with name: \"#{project_name}\" doesn't exist"
end
end
end