Comparing version 0.7.3 to 0.7.4
@@ -21,3 +21,3 @@ 'use strict'; | ||
xmlDoc = xmlDoc.replace(/\>[\s]+\</g, '><'); | ||
res.set(new ResponseHeader({ 'Content-Type': 'application/xml' })); | ||
res.set(new ResponseHeader({ 'Content-Type': 'application/xml', 'Content-Length': xmlDoc.length })); | ||
res.status(200).send(xmlDoc); | ||
@@ -24,0 +24,0 @@ }) |
{ | ||
"name": "azurite", | ||
"version": "0.7.3", | ||
"version": "0.7.4", | ||
"description": "A lightweight server clone of Azure Blob Storage that simulates most of the commands supported by it with minimal dependencies.", | ||
@@ -5,0 +5,0 @@ "scripts": { |
@@ -57,6 +57,6 @@ # Azurite | ||
## Get Container ACL | ||
## Get Container ACL [DONE] | ||
Gets the public access policy and any stored access policies for the container. | ||
## Set Container ACL | ||
## Set Container ACL [DONE] | ||
Sets the public access policy and any stored access policies for the container. | ||
@@ -63,0 +63,0 @@ |
138428