Skip to content

Commit

Permalink
Merge "Change containers to list if string"
Browse files Browse the repository at this point in the history
  • Loading branch information
Zuul authored and openstack-gerrit committed Jan 2, 2018
2 parents cbb9d21 + 88cd149 commit 19adbf4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tempest/api/object_storage/base.py
Expand Up @@ -36,10 +36,14 @@ def delete_containers(containers, container_client, object_client):
using HA proxy sync the deletion properly, otherwise, the container
might fail to be deleted because it's not empty.
:param containers: List of containers to be deleted
:param containers: List of containers(or string of a container)
to be deleted
:param container_client: Client to be used to delete containers
:param object_client: Client to be used to delete objects
"""
if isinstance(containers, str):
containers = [containers]

for cont in containers:
try:
params = {'limit': 9999, 'format': 'json'}
Expand Down

0 comments on commit 19adbf4

Please sign in to comment.