Merge "Set full_listing to True to avoid the default limit"

This commit is contained in:
Jenkins 2014-05-05 11:29:12 +00:00 committed by Gerrit Code Review
commit ea4c2c2903
1 changed files with 3 additions and 0 deletions

View File

@ -45,6 +45,7 @@ class Containers(object):
try:
dest_container_stats, dest_objects = swiftclient.get_container(
None, dest_token, container, http_conn=dest_storage_cnx,
full_listing=True,
)
except(swiftclient.client.ClientException), e:
logging.info("error getting container: %s, %s" % (
@ -81,6 +82,7 @@ class Containers(object):
try:
orig_container_headers, orig_objects = swiftclient.get_container(
None, orig_token, container_name, http_conn=orig_storage_cnx,
full_listing=True,
)
except(swiftclient.client.ClientException), e:
logging.info("ERROR: getting container: %s, %s" % (
@ -115,6 +117,7 @@ class Containers(object):
try:
dest_container_headers, dest_objects = swiftclient.get_container(
None, dest_token, container_name, http_conn=dest_storage_cnx,
full_listing=True,
)
except(swiftclient.client.ClientException), e:
logging.info("ERROR: creating container: %s, %s" % (