Comparing version 0.4.11 to 0.4.12
@@ -16,3 +16,3 @@ 'use strict'; | ||
.then((result) => { | ||
const includeMetadata = queryParams.include && queryParams.include.indexOf('metadata') !== -1; | ||
const includeMetadata = queryParams.include === 'metadata'; | ||
const transformedModel = this._transformBlobList(result, req.query, includeMetadata === true); | ||
@@ -39,7 +39,4 @@ const xmlDoc = js2xmlparser.parse('EnumerationResults', transformedModel); | ||
maxresults: query.maxresults || 5000, | ||
include: query['include='] | ||
include: query.include | ||
} | ||
if (queryParams.include) { | ||
queryParams.include = queryParams.include.split('%82'); | ||
} | ||
return queryParams; | ||
@@ -46,0 +43,0 @@ } |
@@ -13,10 +13,2 @@ 'use strict'; | ||
// Global Bluebird Config | ||
BbPromise.onPossiblyUnhandledRejection((err) => { | ||
console.error('**PANIC** Something unexpected happened! Emulator may be in an inconsistent state!'); | ||
process.stderr.write(err.stack); | ||
process.abort(); | ||
}); | ||
BbPromise.longStackTraces(); | ||
class Azurite { | ||
@@ -23,0 +15,0 @@ constructor() { |
{ | ||
"name": "azurite", | ||
"version": "0.4.11", | ||
"version": "0.4.12", | ||
"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": { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
73516
1582