kong-admin-node-client
Advanced tools
Comparing version 1.0.6 to 1.0.7
{ | ||
"name": "kong-admin-node-client", | ||
"version": "1.0.6", | ||
"version": "1.0.7", | ||
"description": "Kong admin API client in node", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -29,3 +29,3 @@ let _ = require('lodash'), | ||
var requestOptions = _.assign(options, basicRequest); | ||
return sendRequestAndProcessError(requestOptions, [204]) | ||
return sendRequestAndProcessError(requestOptions, [204, 404]) | ||
}; | ||
@@ -32,0 +32,0 @@ |
@@ -85,2 +85,6 @@ let httpHelper = require('./http-helper'), | ||
if (removeResponse.statusCode === 404) { | ||
logger.info(`API ${apiName} not found. Skipping it.`) | ||
} | ||
logger.info(`Configuration for api: ${api.name} was removed successfully`); | ||
@@ -87,0 +91,0 @@ } |
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
32296
802