@azure/data-tables 13.1.1-alpha.20220414.1 → 13.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,14 +1,9 @@
1
1
  # Release History
2
2
 
3
- ## 13.1.1 (Unreleased)
4
-
5
- ### Features Added
6
-
7
- ### Breaking Changes
3
+ ## 13.1.1 (2022-04-14)
8
4
 
9
5
  ### Bugs Fixed
10
-
11
- ### Other Changes
6
+ - Fixed issue where `deleteTable()` doesn't throw any errors [21408](https://github.com/Azure/azure-sdk-for-js/pull/21408).
12
7
 
13
8
  ## 13.1.0 (2022-04-07)
14
9
 
package/dist/index.js CHANGED
@@ -4454,6 +4454,9 @@ class TableClient {
4454
4454
  if (e.statusCode === 404) {
4455
4455
  logger.info("TableClient.deleteTable: Table doesn't exist");
4456
4456
  }
4457
+ else {
4458
+ throw e;
4459
+ }
4457
4460
  }
4458
4461
  });
4459
4462
  }