@mablhq/mabl-cli 1.20.9 → 1.20.12
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/api/basicApiClient.js +1 -1
- package/execution/index.js +1 -1
- package/package.json +1 -1
package/api/basicApiClient.js
CHANGED
|
@@ -147,7 +147,7 @@ class BasicApiClient {
|
|
|
147
147
|
return this.retryWrappedRequest(`makeDeleteRequest('${path}')`, () => this.deleteRequest(path, this.getRetryableRequestConfig(retryConfig)), retryConfig);
|
|
148
148
|
}
|
|
149
149
|
async deleteRequest(path, config) {
|
|
150
|
-
const response = await this.debugRequest('DELETE', path, () => this.
|
|
150
|
+
const response = await this.debugRequest('DELETE', path, () => this.httpClient.delete(path, config));
|
|
151
151
|
BasicApiClient.checkResponseStatusCode(response);
|
|
152
152
|
return response.data;
|
|
153
153
|
}
|