From b30ff12e55412f887b3967fa5e8bed2b99225857 Mon Sep 17 00:00:00 2001 From: David Driscoll Date: Sat, 7 Apr 2018 23:43:11 -0400 Subject: [PATCH] Fixed an issue where Retrieve calls for a specific would fail, because the request was not being referenced --- lib/core/table/TableStorageManager.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/core/table/TableStorageManager.js b/lib/core/table/TableStorageManager.js index 4ac35bff6..d36abe7c4 100644 --- a/lib/core/table/TableStorageManager.js +++ b/lib/core/table/TableStorageManager.js @@ -101,10 +101,10 @@ class TableStorageManager { const coll = this.db.getCollection(request.tableName); const findExpr = {}; if (request.partitionKey) { - findExpr['partitionKey'] = partitionKey; + findExpr['partitionKey'] = request.partitionKey; } if (request.rowKey) { - findExpr['rowKey'] = rowKey; + findExpr['rowKey'] = request.rowKey; } const chain = coll.chain().find(findExpr);