Skip to content

Commit

Permalink
bulk_delete async support
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffcasavant committed Jun 12, 2014
1 parent b75eccd commit 9b965b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyrax/cf_wrapper/container.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def delete_all_objects(self, async=False):
errors - a list of any errors returned by the bulk delete call
"""
nms = self.get_object_names(full_listing=True)
self.client.bulk_delete(self, nms, async=False)
return self.client.bulk_delete(self, nms, async=async)


def remove_from_cache(self, obj):
Expand Down

0 comments on commit 9b965b1

Please sign in to comment.