return;
}
}
logger.debug("Creating bucket with location: {}", location);
CreateContainerOptions options = new CreateContainerOptions();
String acl = request.getHeader("x-amz-acl");
if ("public-read".equals(acl)) {
options.publicRead();
}
try {
if (blobStore.createContainerInLocation(location, containerName,
options)) {